C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > DataTable 转换为 实体类

C# DataTable 转换为 实体类对象实例

作者:

如果你的实体类与数据库表是完全一致的。上代码:

复制代码 代码如下:

public class User
{
        public int ID { get; set; }
        public string Name { get; set; }
}

//对应数据库表:
//User
//字段:ID、Name    

那么你也许需要编写将DataTable 转换为实体对象的方法,便利DataTable.Rows 获得并填充。。

下面是我写的一个通用方法,分享+记录,便于日后直接Copy ~

复制代码 代码如下:

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], null);
        }
        list.Add(entity);
    }
    return list;
}
  

// 调用:

List<User> userList = TableToEntity<User>(YourDataTable);

您可能感兴趣的文章:
阅读全文