在项目中常常常使用到DataTable,假设DataTable使用得当,不仅能使程序简洁有用,并且可以提高性能,达到事半功倍的效果,List
1. 直接写一个datatable转list的类
2. 利用泛型来写,更加通用
public List> DatatoTable(DataTable dt) { List > list = new List >(); foreach (DataRow dr in dt.Rows)//每一行信息,新建一个Dictionary ,将该行的每列信息加入到字典 { Dictionary result = new Dictionary (); foreach (DataColumn dc in dt.Columns) { result.Add(dc.ColumnName, dr[dc].ToString()); } list.Add(result); } return list; }
public class TabletoList { public static ListTableToListModel (DataTable dt) where T : new() { // 定义集合 List ts = new List (); // 获得此模型的类型 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; // 检查DataTable是否包含此列 if (dt.Columns.Contains(tempName)) { // 判断此属性是否有Setter if (!pi.CanWrite) continue; object value = dr[tempName]; if (value != DBNull.Value) pi.SetValue(t, value, null); } } ts.Add(t); } return ts; } }
第二个方法在使用的时候需要注意:T为自己定义的类,其中的属性需要与数据库对应
总结
到此这篇关于c#中DataTable转List的2种方法的文章就介绍到这了,更多相关c# DataTable转List内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!