C#.net开发 List与DataTable相互转换 【转】

http://blog.csdn.net/shuizhaoshui/article/details/51425527

在.NET开发中,操作关系型数据库提取数据经常用到DataTable。ASP.NET前后台数据绑定应用DataTable的时候似乎也很多,但是List集合比DataTable应用更加广泛,提取处理数据也更加方便,MVC绑定数据更倾向于List。 因此,我们会经常需要对List集合和DataTable数据进行互转,以下三个方法是实现List和DataTable互转,以及DataTable单行提取对象。好了,直接上代码了:

1、DataTable转List集合

[csharp] view plain copy print?

  1. /// <summary>
  2. /// DataTable转化为List集合
  3. /// </summary>
  4. /// <typeparam name="T">实体对象</typeparam>
  5. /// <param name="dt">datatable表</param>
  6. /// <param name="isStoreDB">是否存入数据库datetime字段,date字段没事,取出不用判断</param>
  7. /// <returns>返回list集合</returns>
  8. public static List<T> TableToList<T>(DataTable dt, bool isStoreDB = true)
  9. {
  10. List<T> list = new List<T>();
  11. Type type = typeof(T);
  12. List<string> listColums = new List<string>();
  13. foreach (DataRow row in dt.Rows)
  14. {
  15. PropertyInfo[] pArray = type.GetProperties(); //集合属性数组
  16. T entity = Activator.CreateInstance<T>(); //新建对象实例
  17. foreach (PropertyInfo p in pArray)
  18. {
  19. if (!dt.Columns.Contains(p.Name) || row[p.Name] == null || row[p.Name] == DBNull.Value)
  20. {
  21. continue;  //DataTable列中不存在集合属性或者字段内容为空则,跳出循环,进行下个循环
  22. }
  23. if (isStoreDB && p.PropertyType == typeof(DateTime) && Convert.ToDateTime(row[p.Name]) < Convert.ToDateTime("1753-01-01"))
  24. {
  25. continue;
  26. }
  27. try
  28. {
  29. var obj = Convert.ChangeType(row[p.Name], p.PropertyType);//类型强转,将table字段类型转为集合字段类型
  30. p.SetValue(entity, obj, null);
  31. }
  32. catch (Exception)
  33. {
  34. // throw;
  35. }
  36. //if (row[p.Name].GetType() == p.PropertyType)
  37. //{
  38. //    p.SetValue(entity, row[p.Name], null); //如果不考虑类型异常,foreach下面只要这一句就行
  39. //}
  40. //object obj = null;
  41. //if (ConvertType(row[p.Name], p.PropertyType,isStoreDB, out obj))
  42. //{
  43. //    p.SetValue(entity, obj, null);
  44. //}
  45. }
  46. list.Add(entity);
  47. }
  48. return list;
  49. }

isStoreDB形参是在考虑List转化的DataTale数据要不要存储数据库,sqlserver数据中,时间类型date和datetime范围不同,date时间范围是在元年1月1日到9999年12月31日,datetime时间范围是在1753年1月1日到9999年12月31日,不在范围内的时间存储到数据库产生异常,因此加上时间限定,默认为存入数据库中数据。

2、List集合转DataTable

[csharp] view plain copy print?

  1. /// <summary>
  2. /// List集合转DataTable
  3. /// </summary>
  4. /// <typeparam name="T">实体类型</typeparam>
  5. /// <param name="list">传入集合</param>
  6. /// <param name="isStoreDB">是否存入数据库DateTime字段,date时间范围没事,取出展示不用设置TRUE</param>
  7. /// <returns>返回datatable结果</returns>
  8. public static DataTable ListToTable<T>(List<T> list, bool isStoreDB = true)
  9. {
  10. Type tp = typeof(T);
  11. PropertyInfo[] proInfos = tp.GetProperties();
  12. DataTable dt = new DataTable();
  13. foreach (var item in proInfos)
  14. {
  15. dt.Columns.Add(item.Name, item.PropertyType); //添加列明及对应类型
  16. }
  17. foreach (var item in list)
  18. {
  19. DataRow dr = dt.NewRow();
  20. foreach (var proInfo in proInfos)
  21. {
  22. object obj = proInfo.GetValue(item);
  23. if (obj == null)
  24. {
  25. continue;
  26. }
  27. //if (obj != null)
  28. // {
  29. if (isStoreDB && proInfo.PropertyType == typeof(DateTime) && Convert.ToDateTime(obj) < Convert.ToDateTime("1753-01-01"))
  30. {
  31. continue;
  32. }
  33. // dr[proInfo.Name] = proInfo.GetValue(item);
  34. dr[proInfo.Name] = obj;
  35. // }
  36. }
  37. dt.Rows.Add(dr);
  38. }
  39. return dt;
  40. }

上面判断时间范围原因与table转集合一样。

3、提取DataTable某一行转为指定对象

[csharp] view plain copy print?

  1. /// <summary>
  2. /// table指定行转对象
  3. /// </summary>
  4. /// <typeparam name="T">实体</typeparam>
  5. /// <param name="dt">传入的表格</param>
  6. /// <param name="rowindex">table行索引,默认为第一行</param>
  7. /// <returns>返回实体对象</returns>
  8. public static T TableToEntity<T>(DataTable dt, int rowindex = 0, bool isStoreDB = true)
  9. {
  10. Type type = typeof(T);
  11. T entity = Activator.CreateInstance<T>(); //创建对象实例
  12. if (dt == null)
  13. {
  14. return entity;
  15. }
  16. //if (dt != null)
  17. //{
  18. DataRow row = dt.Rows[rowindex]; //要查询的行索引
  19. PropertyInfo[] pArray = type.GetProperties();
  20. foreach (PropertyInfo p in pArray)
  21. {
  22. if (!dt.Columns.Contains(p.Name) || row[p.Name] == null || row[p.Name] == DBNull.Value)
  23. {
  24. continue;
  25. }
  26. if (isStoreDB && p.PropertyType == typeof(DateTime) && Convert.ToDateTime(row[p.Name]) < Convert.ToDateTime("1753-01-02"))
  27. {
  28. continue;
  29. }
  30. try
  31. {
  32. var obj = Convert.ChangeType(row[p.Name], p.PropertyType);//类型强转,将table字段类型转为对象字段类型
  33. p.SetValue(entity, obj, null);
  34. }
  35. catch (Exception)
  36. {
  37. // throw;
  38. }
  39. // p.SetValue(entity, row[p.Name], null);
  40. }
  41. //  }
  42. return entity;
  43. }

以上三个方法有些代码注释掉,但是没有删除,是给大家一个参考,代码中有啥不对或者需要优化的地方还请大家批评指出,我会尽快改正,谢谢!

时间: 2024-10-09 02:59:55

C#.net开发 List与DataTable相互转换 【转】的相关文章

C#.net开发 List与DataTable相互转换

在.NET开发中,操作关系型数据库提取数据经常用到DataTable.ASP.NET前后台数据绑定应用DataTable的时候似乎也很多,但是List集合比DataTable应用更加广泛,提取处理数据也更加方便,MVC绑定数据更倾向于List. 因此,我们会经常需要对List集合和DataTable数据进行互转,以下三个方法是实现List和DataTable互转,以及DataTable单行提取对象.好了,直接上代码了: 1.DataTable转List集合 /// <summary> /// 

Asp.net常用开发方法之DataTable/DataReader转Json格式代码

1 public static string JsonParse(OleDbDataReader dataReader) //DataRead转json 2 { 3 StringBuilder jsonString = new StringBuilder(); 4 jsonString.Append("["); 5 while (dataReader.Read()) 6 { 7 jsonString.Append("{"); 8 for (int i = 0; i

ListView与DataTable相互转换

public static void dataTableToListView(ListView lv, DataTable dt) { if (dt != null) { lv.Items.Clear(); lv.Columns.Clear(); for (int i = 0; i < dt.Columns.Count; i++) { lv.Columns.Add(dt.Columns[i].Caption.ToString()); } foreach (DataRow dr in dt.Row

XML TO DataSet TO DataTable 相互转换

1 //遍历XML 获得 DataSet //XmlTextReader static void Main(string[] args) 2 { 3 string xmlData = @"D:\study\XMLtest\XMLtest\bin\Debug\bookstore.xml"; 4 DataSet t = ConvertXMLToDataSet(xmlData); 5 Console.WriteLine(t); 6 7 } 8 9 private static DataSet

XML和DataTable相互转换

//XML转DataSet public static void XmlToDataTableByFile(){ XmlDocument doc = new XmlDocument(); doc.Load(@"E:\\xmlsample.xml"); DataSet ds = new DataSet(); StringReader tr = new StringReader(doc.InnerXml); //DataTable也可以ReadXml() ds.ReadXml(tr); }

json与DataTable相互转换

首先我们看看 Newtonsoft.Json.JsonConvert 是怎么完成的: DataTable table = new DataTable(); table.Columns.Add("id"); table.Columns.Add("name"); table.Columns.Add("url"); table.Rows.Add("1", "zhengdjin", "http://blo

封装一个List集合和datatable相互转换的工具类

/// <summary> /// List转换为DataTable对象 /// </summary> public class ListTranTableModel { /// <summary> /// 新增的列名称 /// </summary> public string addColumName { get; set; } /// <summary> /// 新增列的默认信息 /// </summary> public Tab

.NET中DataTable的常用操作

一.目的 在各种.NET开发中,DataTable都是一个非常常见且重要的类型,在与数据打交道的过程中可以说是必不可少的对象. 它功能强大,属性与功能也是相当丰富,用好的话,使我们在处理数据时,减少很多工作量,且提高工作效率.它丰富的功能帮助我们解决很多问题的同时,也增加了记忆的难度,之前学习且记住的方法,一段时间没用到就会忘记,等再需要用到它时,有需要进行百度或谷歌,比较浪费时间.因此,这里将各种常用场景下的DataTable操作记录下来,一是容易回顾学习,二是方便工作时查阅. 但时,因为经验

微软-创建数据访问层

简介 https://msdn.microsoft.com/zh-cn/cc964016 作为web 开发人员,我们的工作总是在和数据打交道.我们创建数据库来存储数据,编写代码来检索并修改数据,并创建Web 页面来收集和汇总数据.这是探讨在ASP.NET 2.0 中实现这些常用类型的技巧的系列教程中的首篇教程.我们从创建一个 软件架构 开始,包括使用Typed DataSet 的数据访问层(DAL) .实现自定义业务规则的业务逻辑层(BLL) 和共享同一页面布局的ASP.NET 页面组成的表示层