IList转DataTable、DataTable转IList

 using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Data;
 using System.Linq;
 using System.Reflection;
 using System.Text;

 namespace Framework.Utility
 {
     public static class DataTableHelper
     {
         public static DataTable ConvertTo<T>(IList<T> list)
         {
             DataTable table = CreateTable<T>();
             Type entityType = typeof(T);
             PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(entityType);
             foreach (T item in list)
             {
                 DataRow row = table.NewRow();
                 foreach (PropertyDescriptor prop in properties)
                     row[prop.Name] = prop.GetValue(item);
                 table.Rows.Add(row);
             }
             return table;
         }

         public static IList<T> ConvertTo<T>(IList<DataRow> rows)
         {
             IList<T> list = null;
             if (rows != null)
             {
                 list = new List<T>();
                 foreach (DataRow row in rows)
                 {
                     T item = CreateItem<T>(row);
                     list.Add(item);
                 }
             }
             return list;
         }

         public static IList<T> ConvertTo<T>(DataTable table)
         {
             try
             {
                 if (table == null)
                     return null;

                 List<DataRow> rows = new List<DataRow>();
                 foreach (DataRow row in table.Rows)
                     rows.Add(row);

                 return ConvertTo<T>(rows);
             }
             catch(Exception ex)
             {
                 string err = ex.ToString();
                 return null;
             }
         }

         public static T CreateItem<T>(DataRow row)
         {
             string columnName;
             T obj = default(T);
             if (row != null)
             {
                 obj = Activator.CreateInstance<T>();
                 foreach (DataColumn column in row.Table.Columns)
                 {
                     columnName = column.ColumnName;
                     //Get property with same columnName
                     PropertyInfo prop = obj.GetType().GetProperty(columnName);
                     if (prop == null) continue;
                     ) continue;
                     try
                     {
                         //Get value for the column
                         object value = (row[columnName].GetType() == typeof(DBNull))
                         ? null : row[columnName];
                         //Set property value
                         if (prop.CanWrite)    //判断其是否可写
                             prop.SetValue(obj, value, null);
                     }
                     catch
                     {
                         throw;

                     }
                 }
             }
             return obj;
         }

         public static DataTable CreateTable<T>()
         {
             Type entityType = typeof(T);
             DataTable table = new DataTable(entityType.Name);
             PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(entityType);

             foreach (PropertyDescriptor prop in properties)
                 table.Columns.Add(prop.Name, prop.PropertyType);

             return table;
         }
         /// <summary>
         /// datatable 转换成list
         /// 调用方法:List<Entity> list = DataTableHelper.ConvertToEx<Entity>(dt);
         /// </summary>
         /// <typeparam name="T"></typeparam>
         /// <param name="dt"></param>
         /// <returns></returns>
         public static List<T> ConvertToEx<T>(DataTable dt) where T : new()
         {
             if (dt == null) return null;
             ) return null;

             List<T> list = new List<T>();
             Type type = typeof(T);
             PropertyInfo[] propertyInfos = type.GetProperties();  //获取泛型的属性
             List<DataColumn> listColumns = dt.Columns.Cast<DataColumn>().ToList();  //获取数据集的表头,以便于匹配
             T t;
             foreach (DataRow dr in dt.Rows)
             {
                 t = new T();
                 foreach (PropertyInfo propertyInfo in propertyInfos)
                 {
                     try
                     {
                         DataColumn dColumn = listColumns.Find(name => name.ToString().ToUpper() == propertyInfo.Name.ToUpper());  //查看是否存在对应的列名
                         if (dColumn != null)
                             propertyInfo.SetValue(t, dr[propertyInfo.Name], null);  //赋值
                     }
                     catch (Exception ex)
                     {
                         throw new Exception(ex.Message);
                     }
                 }
                 list.Add(t);
             }
             return list;
         }

     }
 }

【2017001】IList转DataTable、DataTable转IList的更多相关文章

  1. DataTable转换成IList<T>的简单实现

    DataTable的无奈 很多时候,我们需要去操作DataTable.但DataTable的操作,实在是太不方便了.Linq?lambda表达式?统统没有... 特别是对现有结果集做进一步筛选,这样的 ...

  2. C# IList<T>转为DataTable

    public class WebUtil { /// <summary> /// 转换IList<T>为DataTable/// </summary> /// &l ...

  3. C# 中 DataTable转换成IList

    在用C#作开发的时候经常要把DataTable转换成IList:操作DataTable比较麻烦,把DataTable转换成IList,以对象实体作为IList的元素,操作起来就非常方便. 注意:实体的 ...

  4. DataTable转换成IList 【转载】

    链接:http://www.cnblogs.com/hlxs/archive/2011/05/09/2087976.html#2738813 留着学习 using System; using Syst ...

  5. DataTable转换成IList

    //文章出处: http://www.cnblogs.com/hlxs/archive/2011/05/09/2087976.html DataTable转换成IList 在用C#作开发的时候经常要把 ...

  6. 将SqlDataReader 数据集转化为datatbale ,在将datatable 转化为iList

    public IList GetModelList(string tablename, string where) { IList list = null; DataTable dataTable = ...

  7. [DataTable] datatable根据表中的字段进行排序

    private DataTable SortTable(DataTable dt,string[] pids) { DataTable dt0 = dt.Clone(); //复制原表结构 ;i< ...

  8. MVC中一般为什么用IQueryable而不是用IList?用IQueryable比IList好在哪?

    IList(IList<T>)会立即在内存里创建持久数据,这就没有实现"延期执行(deferred execution)",如果被加载的实体有关联实体(associat ...

  9. 完整DataTable与IList互换(转)

    public class CollectionHelper { private CollectionHelper() { } public static DataTable ConvertTo< ...

随机推荐

  1. Java CAS总结

    文章目录 1. CPU指令对CAS的支持(CPU的cas指令是原子的) 或许我们可能会有这样的疑问,假设存在多个线程执行CAS操作并且CAS的步骤很多,有没有可能在判断V和E相同后,正要赋值时,切换了 ...

  2. php字符集转换

    PHP通过iconv将字符串从GBK转换为UTF8字符集. 1. iconv()介绍 iconv函数可以将一种已知的字符集文件转换成另一种已知的字符集文件.例如:从GB2312转换为UTF-8. ic ...

  3. 解决vue移动端适配问题

    1,先看看网上关于移动端适配讲解 再聊移动端页面适配,rem和vw适配方案! 基础点:rem相对根节点字体的大小.所以不用px; 根字体:字体的大小px; px:你就当成cm(厘米)这样的东西吧: 基 ...

  4. javascript获取文件后缀名

    javascript获取文件后缀名:在需要验证文件格式的时候,首先就要获得文件的格式,下面是一个通过正则表达式获取文件后缀名的一个简单实例. function validate(){ var impo ...

  5. java.util.concurrent.Semaphore 使用

    1. 概述 Semaphore(信号)  并不存在真正的许可 只是维护一个计数器, 通常用来限定进入一些资源的线程数 accquire()  方法获取许可 成功则计数器值-1 没有则阻塞直到一个可用的 ...

  6. div 居中方法汇总

    本文是从简书复制的, markdown语法可能有些出入, 想看"正版"和更多内容请关注 简书: 小贤笔记 情况一: 父子容器宽高已知 方法一 html <div class= ...

  7. k 近邻算法(k-Nearest Neighbor,简称kNN)

    预约助教问题: 1.计算1-NN,k-nn和linear regression这三个算法训练和查询的时间复杂度和空间复杂度? 一. WHy 最简单最初级的分类器是将全部的训练数据所对应的类别都记录下来 ...

  8. Laravel Query Builder 复杂查询案例:子查询实现分区查询 partition by

    案例 案例:Laravel 在文章列表中附带上前10条评论?,在获取文章列表时同时把每个文章的前10条评论一同查询出来. 这是典型分区查询案例,需要根据 comments 表中的 post_id 字段 ...

  9. 事件循环进阶:macrotask与microtask

    这段参考了参考来源中的第2篇文章(英文版的),(加了下自己的理解重新描述了下), 这里没法给大家演示代码,我就简单说下我的理解吧. promise和settimeout 在一起的时候执行顺序是个有意思 ...

  10. 新款 2018款macbook Pro 装双系统教程

    首个阅读量将破万的文章,感谢支持.防止无良爬虫,开头附上原文链接:http://www.cnblogs.com/xueyudlut/p/7498115.html ------------------- ...