码迷,mamicode.com
首页 > Windows程序 > 详细

C#反射

时间:2018-03-28 20:26:18      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:gpo   can   col   span   dbnull   模型   datatable   ble   nbsp   

public class ModelConvertHelper<T>where T: new()
    {
        public static IList<T> ConvertToModel(DataTable dt)
        {
            IList<T> list = new List<T>();

            Type type = typeof(T);
            string tempName = "";

            foreach (DataRow dr in dt.Rows)
            {
                T t = new T();

                //获得此模型的属性
                PropertyInfo[] propertys = t.GetType().GetProperties();
                foreach (PropertyInfo pi in propertys)
                {
                    tempName = pi.Name;

                    if (dt.Columns.Contains(tempName))
                    {
                        if (!pi.CanWrite)
                        {
                            continue;
                        }
                        object value = dr[tempName];
                        if (value != DBNull.Value)
                        {
                            pi.SetValue(t, value, null);
                        }
                    }
                }
                list.Add(t);
            }
            return list;
        }
    }

 

C#反射

标签:gpo   can   col   span   dbnull   模型   datatable   ble   nbsp   

原文地址:https://www.cnblogs.com/liaods/p/8665466.html

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