博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
List转换DataTable
阅读量:5060 次
发布时间:2019-06-12

本文共 1076 字,大约阅读时间需要 3 分钟。

1 public static class IListUtil 2 { 3     ///  4     /// 将集合类转换成DataTable  5     ///  6     /// 集合 7     /// 
8 public static DataTable AsDataTable
(this IList
list) 9 {10 DataTable result = new DataTable();11 if (list.Count > 0)12 {13 PropertyInfo[] propertys = typeof(T).GetProperties();14 foreach (PropertyInfo pi in propertys)15 {16 result.Columns.Add(pi.Name, pi.PropertyType);17 }18 19 for (int i = 0; i < list.Count; i++)20 {21 ArrayList tempList = new ArrayList();22 foreach (var item in propertys)23 {24 object obj = item.GetValue(list[i], null);25 tempList.Add(obj);26 }27 28 object[] array = tempList.ToArray();29 result.LoadDataRow(array, true);30 }31 }32 return result;33 }34 35 36 }

 

转载于:https://www.cnblogs.com/gaobing/p/3842340.html

你可能感兴趣的文章
mysqladmin
查看>>
解决 No Entity Framework provider found for the ADO.NET provider
查看>>
Android 自定义View (三) 圆环交替 等待效果
查看>>
设置虚拟机虚拟机中fedora上网配置-bridge连接方式(图解)
查看>>
HEVC播放器出炉,迅雷看看支持H.265
查看>>
[置顶] Android仿人人客户端(v5.7.1)——人人授权访问界面
查看>>
Eclipse 调试的时候Tomcat报错启动不了
查看>>
【安卓5】高级控件——拖动条SeekBar
查看>>
ES6内置方法find 和 filter的区别在哪
查看>>
Android入门之文件系统操作(二)文件操作相关指令
查看>>
Android实现 ScrollView + ListView无滚动条滚动
查看>>
java学习笔记之String类
查看>>
UVA 11082 Matrix Decompressing 矩阵解压(最大流,经典)
查看>>
jdk从1.8降到jdk1.7失败
查看>>
一些关于IO流的问题
查看>>
mongo备份操作
查看>>
8 -- 深入使用Spring -- 3...1 Resource实现类InputStreamResource、ByteArrayResource
查看>>
硬件笔记之Thinkpad T470P更换2K屏幕
查看>>
一个关于vue+mysql+express的全栈项目(六)------ 聊天模型的设计
查看>>
【知识库】-数据库_MySQL 的七种 join
查看>>