DataTable转实体类集合

Posted 守拙的瘦子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataTable转实体类集合相关的知识,希望对你有一定的参考价值。

private static List<T> TableToEntity<T>(DataTable dt) where T : class,new()
{
Type type = typeof(T);
List<T> list = new List<T>();

foreach (DataRow row in dt.Rows)
{
PropertyInfo[] pArray = type.GetProperties();
T entity = new T();
foreach (PropertyInfo p in pArray)
{
if (row[p.Name] is Int64)
{
p.SetValue(entity, Convert.ToInt32(row[p.Name]), null);
continue;
}
p.SetValue(entity, row[p.Name].ToString(), null);
}
list.Add(entity);
}
return list;
}

调用:List<AlarmMachinelist> userList = TableToEntity<AlarmMachinelist>(dt);

以上是关于DataTable转实体类集合的主要内容,如果未能解决你的问题,请参考以下文章

反射DataTable转实体类

Datatable转实体 实体转换辅助类

使用反射将DataTable的数据转成实体类

DataTable 转实体

DataTable 转实体

基于Emit的C#下DataTable转实体类方法,一直报错.