码迷,mamicode.com
首页 > 其他好文 > 详细

DataTable转实体类集合

时间:2018-01-22 10:59:14      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:new t   convert   ati   where   集合   int   let   mac   str   

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转实体类集合

标签:new t   convert   ati   where   集合   int   let   mac   str   

原文地址:https://www.cnblogs.com/wuyujie/p/8327615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!