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

扩展方法(DateTableToList)

时间:2014-05-30 08:05:30      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
     public static IList<T> ToList<T>(this DataTable dt) where T : class,new()
        {
            var prlist = new List<PropertyInfo>();
            var t = typeof(T);
            Array.ForEach(t.GetProperties(), p => { if (dt.Columns.IndexOf(p.Name) != -1) prlist.Add(p); });
            var oblist = new List<T>();
            foreach (DataRow row in dt.Rows)
            {
                var ob = new TResult();
                prlist.ForEach(p => { if (row != null && row[p.Name] != DBNull.Value) p.SetValue(ob, row[p.Name], null); });
                oblist.Add(ob);
            }
            return oblist;
        }
bubuko.com,布布扣

 

扩展方法(DateTableToList),布布扣,bubuko.com

扩展方法(DateTableToList)

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/anbylau2130/p/3756952.html

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