每当从数据库中读取到DataTabel时,使用此方法就可以将datetable转为指定的model实体
[C#] 纯文本查看 复制代码 public static IEnumerable<T> DataTableToModels<T>(this DataTable dt) where T : class, new()
{
//判断datatable是否有值
if (dt.Columns.Count < 1 || dt.Rows.Count < 1) yield return default(T);
//获取实体类中所有公开的属性,并且筛选出在datatable中存在的列
var propertyInfos = from propertyInfo in typeof(T).GetProperties()
where dt.Columns.Contains(propertyInfo.Name)
select propertyInfo;
//循环设置属性
foreach (DataRow dr in dt.Rows)//遍历dt中所有行
{
var result = new T();
foreach (var p in propertyInfos)//遍历所有属性
{
try
{
p.SetValue(result, dr[p.Name], null);
}
catch (System.Exception)
{
throw;
}
}
yield return result;
}
}
|