Loading...   在开发过程中我们查询数据库时返回的是DataTable数据类型的数据,有很多同学都在问,能不能将DataTable的数据转换成`List<T>` 集合,转成泛型集合后,我们就更加方便使用和访问数据。   直接看代码: ```csharp using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Data; using System.Reflection; public class Helper<T> where T : new() { public static IList<T> ConvertToList(DataTable dt) { // 定义集合 IList<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; // 检查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; } } ```   使用:`IList<Students> nolist = Helper<Students>.ConvertToList(dt);` --- 今天的分享就此结束了,希望能够帮助到大家。其实还有很多转换方法,后续还会继续更新的~ 最后修改:2022 年 03 月 25 日 © 允许规范转载 赞 1 都滑到这里了,不点赞再走!?