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

DateTable转化为泛型集合

时间:2017-08-08 16:45:38      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:turn   ring   datatable   tar   contains   equals   property   tostring   obj   

public class ListUtil
    {
        public static List<T> ToList<T>(DataTable dt)
        {
            List<T> list = new List<T>();
            T t = default(T);
            PropertyInfo[] propertyinfos = null;
            foreach (DataRow dr in dt.Rows)
            {
                t = Activator.CreateInstance<T>();
                propertyinfos = t.GetType().GetProperties();
                foreach (PropertyInfo pro in propertyinfos)
                {
                    if (dt.Columns.Contains(pro.Name))
                    {
                        object value = dr[pro.Name];
                        if (!value.ToString().Equals(""))
                        {
                            pro.SetValue(t, value.ToString(), null);
                        }
                    }
                }
                list.Add(t);
            }
            return  list;
        }
    }

 

DateTable转化为泛型集合

标签:turn   ring   datatable   tar   contains   equals   property   tostring   obj   

原文地址:http://www.cnblogs.com/z-huan/p/7307049.html

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