码迷,mamicode.com
首页 > 数据库 > 详细

将数据库读出来的数据转化成集合

时间:2017-08-24 10:32:12      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:data   mic   cti   bnu   eof   new   name   info   tor   

public class DynamicBuilder<T>
    {
        private PropertyInfo[] properties;

        private DynamicBuilder() { }

        public T Build(IDataRecord reader)
        {
            T result = (T)Activator.CreateInstance(typeof(T));

            for (int i = 0; i < reader.FieldCount; i++)
            {
                if (properties[i] != null && !reader.IsDBNull(i))
                {
                    if (properties[i].PropertyType.IsEnum)
                    {
                        properties[i].SetValue(result, Enum.ToObject(properties[i].PropertyType, reader[i]), null);
                    }
                    else
                    {
                        properties[i].SetValue(result, Convert.ChangeType(reader[i], properties[i].PropertyType), null);
                    }

                }
            }
            return result;
        }

        public static DynamicBuilder<T> CreateBuilder(IDataRecord reader)
        {
            DynamicBuilder<T> result = new DynamicBuilder<T>();
            result.properties = new PropertyInfo[reader.FieldCount];
            for (int i = 0; i < reader.FieldCount; i++)
            {
                result.properties[i] = typeof(T).GetProperty(reader.GetName(i), BindingFlags.Public | BindingFlags.Instance | BindingFlags.IgnoreCase);
            }
            return result;
        }
    }

 

将数据库读出来的数据转化成集合

标签:data   mic   cti   bnu   eof   new   name   info   tor   

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

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