c# – 对象映射器的通用SqlDataReader
作者:互联网
我正在尝试构建一个通用映射器,它将SqlDataReader的结果转换为类对象.
这是我的代码的基本结构:
public interface IObjectCore
{
//contains properties for each of my objects
}
public class ObjectMapper<T> where T : IObjectCore, new()
{
public List<T> MapReaderToObjectList(SqlDataReader reader)
{
var resultList = new List<T>();
while (reader.Read())
{
var item = new T();
Type t = item.GetType();
foreach (PropertyInfo property in t.GetProperties())
{
Type type = property.PropertyType;
string readerValue = string.Empty;
if (reader[property.Name] != DBNull.Value)
{
readerValue = reader[property.Name].ToString();
}
if (!string.IsNullOrEmpty(readerValue))
{
property.SetValue(property, readerValue.To(type), null);
}
}
}
return resultList;
}
}
public static class TypeCaster
{
public static object To(this string value, Type t)
{
return Convert.ChangeType(value, t);
}
}
它在大多数情况下似乎工作,但一旦它试图设置属性的值,我得到以下错误:
Object does not match target type
在我有property.SetValue的行.
我已经尝试了一切,但我没有看到我可能做错了什么.
解决方法:
您正在尝试设置要循环的属性的值,我认为您的目的是设置新创建的项目的值,因为它将基于item.GetType与您传递的类型相匹配()
var item = new T();
//other code
property.SetValue(item , readerValue.To(type), null);
代替
property.SetValue(property, readerValue.To(type), null);
同样根据评论,请确保您拥有:
resultList.Add(item);
标签:c,sqldatareader,generics 来源: https://codeday.me/bug/20190621/1252391.html