利用反射,DataReader填充泛型集合List<T>
网上找的代码,稍微改了一下,请问这样做是否会有效率问题,或者,还有没有其它更好、更方便的方法填充List<T>?(ORM除外)
public static List<T> ToList<T>(IDataReader reader)
{
//实例化一个List<>泛型集合
List<T> DataList = new List<T>();
while (reader.Read())
{
T RowInstance = Activator.CreateInstance<T>();//动态创建数据实体对象
//通过反射取得对象所有的Property
foreach (PropertyInfo Property in typeof(T).GetProperties())
{
foreach (BindingFieldAttribute FieldAttr in Property.GetCustomAttributes(typeof(BindingFieldAttribute), true))
{
try
{
//取得当前数据库字段的顺序
int Ordinal = reader.GetOrdinal(FieldAttr.FieldName);
if (reader.GetValue(Ordinal) != DBNull.Value)
{
//将DataReader读取出来的数据填充到对象实体的属性里
Property.SetValue(RowInstance, Convert.ChangeType(reader.GetValue(Ordinal), Property.PropertyType), null);
}
}
catch
{
break;
}
}
}
DataList.Add(RowInstance);
}
return DataList;
}
//自定义的Attribute,用于与数据库字段进行绑定
public class BindingFieldAttribute : System.Attribute
{
public string FieldName { get; set; }
}
IList <T> list = new List <T>();
T t = default(T);
PropertyInfo[] propertypes = null;
string tempName = string.Empty;
foreach (DataRow row in table.Rows)
{
t = Activator.CreateInstance <T>();
propertypes = t.GetType().GetProperties();
foreach (PropertyInfo pro in propertypes)
{
tempName = pro.Name;
if (table.Columns.Contains(tempName))
{
object value = row[tempName];
pro.SetValue(t, value, null);
}
}
list.Add(t);
}
return list;
}
或
tb.OfType<TableRow>().Select(row=>
new YourType{Field1=(string)row["field1"],Field2=(int)row["field2"]}).ToList();
[解决办法]
使用PDF.NET框架来查询数据,不需要反射,现在已经开源了,可以看看。
[解决办法]
T RowInstance = Activator.CreateInstance<T>();//动态创建数据实体对象
这个东西 可以有第2种方式 就是用 泛型的约束了
例如:
void Test<T>(IDataReader reader) where T:new
{
T t = new T();
}