zoukankan      html  css  js  c++  java
  • DataReader转实体类的方法

    都在注释里了,不多说了

            /// <summary>
            
    /// DataReader转泛型
            
    /// </summary>
            
    /// <typeparam name="T">传入的实体类</typeparam>
            
    /// <param name="objReader">DataReader对象</param>
            
    /// <returns></returns>
            public static IList<T> ReaderToList<T>(this IDataReader objReader)
            {
                using (objReader)
                {
                    List<T> list = new List<T>();

                    //获取传入的数据类型
                    Type modelType = typeof(T);

                    //遍历DataReader对象
                    while (objReader.Read())
                    {
                        //使用与指定参数匹配最高的构造函数,来创建指定类型的实例
                        T model = Activator.CreateInstance<T>();
                        for (int i = 0; i < objReader.FieldCount; i++)
                        {
                            //判断字段值是否为空或不存在的值
                            if (!IsNullOrDBNull(objReader[i]))
                            {
                                //匹配字段名
                                PropertyInfo pi = modelType.GetProperty(objReader.GetName(i), BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance | BindingFlags.IgnoreCase);
                                if (pi != null)
                                {
                                    //绑定实体对象中同名的字段  
                                    pi.SetValue(model, CheckType(objReader[i], pi.PropertyType), null);
                                }
                            }
                        }
                        list.Add(model);
                    }
                    return list;
                }
            }

            /// <summary>
            
    /// 对可空类型进行判断转换(*要不然会报错)
            
    /// </summary>
            
    /// <param name="value">DataReader字段的值</param>
            
    /// <param name="conversionType">该字段的类型</param>
            
    /// <returns></returns>
            private static object CheckType(object value, Type conversionType)
            {
                if (conversionType.IsGenericType && conversionType.GetGenericTypeDefinition().Equals(typeof(Nullable<>)))
                {
                    if (value == null)
                        return null;
                    System.ComponentModel.NullableConverter nullableConverter = new System.ComponentModel.NullableConverter(conversionType);
                    conversionType = nullableConverter.UnderlyingType;
                }
                return Convert.ChangeType(value, conversionType);
            }

            /// <summary>
            
    /// 判断指定对象是否是有效值
            
    /// </summary>
            
    /// <param name="obj"></param>
            
    /// <returns></returns>
            private static bool IsNullOrDBNull(object obj)
            {
                return (obj == null || (obj is DBNull)) ? true : false;
            }


    /// <summary>
            
    /// DataReader转模型
            
    /// </summary>
            
    /// <typeparam name="T"></typeparam>
            
    /// <param name="objReader"></param>
            
    /// <returns></returns>
            public static T ReaderToModel<T>(this IDataReader objReader)
            {

                using (objReader)
                {
                    if (objReader.Read())
                    {
                        Type modelType = typeof(T);
                        int count = objReader.FieldCount;
                        T model = Activator.CreateInstance<T>();
                        for (int i = 0; i < count; i++)
                        {
                            if (!IsNullOrDBNull(objReader[i]))
                            {
                                PropertyInfo pi = modelType.GetProperty(objReader.GetName(i), BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance | BindingFlags.IgnoreCase);
                                if (pi != null)
                                {
                                    pi.SetValue(model, CheckType(objReader[i], pi.PropertyType), null);
                                }
                            }
                        }
                        return model;
                    }
                }
                return default(T);
            }
  • 相关阅读:
    这样的专家门诊
    CPU 知识介绍
    软考结束了!
    ubuntu环境配置eclipse+opencv
    2016年3月份总结
    点聚合功能基于ARCGIS RUNTIME SDK FOR ANDROID
    如何用java语言获取某个网页的源代码
    点聚合功能改良版本
    ARCGIS切图:TPK文件的空间参考为地理坐标系
    Java中的数据类型
  • 原文地址:https://www.cnblogs.com/zhuiyi/p/2694438.html
Copyright © 2011-2022 走看看