码迷,mamicode.com
首页 > 其他好文 > 详细

List~dataTable

时间:2014-12-18 14:53:02      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:des   blog   ar   io   sp   for   on   div   log   

  public DataTable ConvertToDataTable<T>(IList<T> data)
        {
            PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(T));
            DataTable table = new DataTable();
            foreach (PropertyDescriptor prop in properties)
                table.Columns.Add(prop.Name, Nullable.GetUnderlyingType(prop.PropertyType) ?? prop.PropertyType);
            foreach (T item in data)
            {
                DataRow row = table.NewRow();
                foreach (PropertyDescriptor prop in properties)
                    row[prop.Name] = prop.GetValue(item) ?? DBNull.Value;
                table.Rows.Add(row);
            }
            return table;

        }

 

List~dataTable

标签:des   blog   ar   io   sp   for   on   div   log   

原文地址:http://www.cnblogs.com/lh123/p/4171587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!