DataTable转换成List

Posted 奋斗的大鹏

tags:

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

 

using System;
using System.Collections.Generic;
using System.Data;
using System.Reflection;
using System.Text;

 

public class Helper<T> where T : new()
{
/// <summary>
/// datatable转list
/// </summary>
/// <param name="dt"></param>
/// <returns></returns>
public static List<T> ConvertToModel(DataTable dt)
{

List<T> ts = new List<T>();// 定义集合
Type type = typeof(T); // 获得此模型的类型
string tempName = "";
foreach (DataRow dr in dt.Rows)
{
T t = new T();
PropertyInfo[] propertys = t.GetType().GetProperties();// 获得此模型的公共属性
foreach (PropertyInfo pi in propertys)
{
tempName = pi.Name;
if (dt.Columns.Contains(tempName))
{
if (!pi.CanWrite) continue;
object value = dr[tempName];
if (value != DBNull.Value)
pi.SetValue(t, value, null);
}
}
ts.Add(t);
}
return ts;
}


}

以上是关于DataTable转换成List的主要内容,如果未能解决你的问题,请参考以下文章

C# 怎么将json 转换成 datatable

如何将DataGridView转换为DataTable?

linq查询结果怎么转换成datatable

System.ArgumentException: 该行已经属于另一个表。看下面代码

list泛型转换成datatable

list集合转换成datatable