zoukankan      html  css  js  c++  java
  • DateTime? 转对象出错的问题

    public static List<T> TableToEntitys<T>(DataTable dt) where T : class, new()
            {
                // 定义集合  
                List<T> ts = new List<T>();
    
                if (dt != null && dt.Rows.Count > 0)
                {
                    // 获得此模型的类型  
                    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;
                            // 检查DataTable是否包含此列  
                            if (dt.Columns.Contains(tempName))
                            {
                                // 判断此属性是否有Setter  
                                if (!pi.CanWrite)
                                    continue;
                                object value = dr[tempName];
                                if (value != DBNull.Value)
                                {
                                    //pi.SetValue(t, value, null);  
                                    // pi.SetValue(t, Convert.ChangeType(value, pi.PropertyType, CultureInfo.CurrentCulture), null);
                                    pi.SetValue(t, ChanageType(value, pi.PropertyType), null);
                                }
                            }
                        }
                        ts.Add(t);
                    }
                }
    
                return ts;
            }
    
            public static T TableToEntity<T>(DataTable dt) where T : class, new()
            {
                // 定义集合  
                T t = new T();
    
                if (dt != null && dt.Rows.Count > 0)
                {
                    // 获得此模型的类型  
                    Type type = typeof(T);
                    string tempName = "";
                    foreach (DataRow dr in dt.Rows)
                    {
                        // 获得此模型的公共属性  
                        PropertyInfo[] propertys = t.GetType().GetProperties();
                        foreach (PropertyInfo pi in propertys)
                        {
                            tempName = pi.Name;
                            // 检查DataTable是否包含此列  
                            if (dt.Columns.Contains(tempName))
                            {
                                // 判断此属性是否有Setter  
                                if (!pi.CanWrite)
                                    continue;
                                object value = dr[tempName];
                                if (value != DBNull.Value)
                                {
                                    //pi.SetValue(t, value, null);  
                                    // pi.SetValue(t, Convert.ChangeType(value, pi.PropertyType, CultureInfo.CurrentCulture), null);
                                    pi.SetValue(t, ChanageType(value, pi.PropertyType), null);
                                }
                            }
                        }
                        break;
                    }
                }
                return t;
            }
    
            public static T RowToEntity<T>(DataRow dr) where T : class, new()
            {
                // 定义集合  
                T t = new T();
    
                if (dr != null)
                {
                    // 获得此模型的类型  
                    Type type = typeof(T);
                    string tempName = "";
    
                    // 获得此模型的公共属性  
                    PropertyInfo[] propertys = t.GetType().GetProperties();
                    foreach (PropertyInfo pi in propertys)
                    {
                        tempName = pi.Name;
                        // 检查DataTable是否包含此列  
                        
                        try
                        { 
                            // 判断此属性是否有Setter  
                            if (!pi.CanWrite)
                                continue;
                            object value = dr[tempName];
                            if (value != DBNull.Value)
                            {
                                //pi.SetValue(t, value, null);  
                                // pi.SetValue(t, Convert.ChangeType(value, pi.PropertyType, CultureInfo.CurrentCulture), null);
                                pi.SetValue(t, ChanageType(value, pi.PropertyType), null);
                            }
                        }
                        catch(Exception ex)
                        {
                            Jun.Log.Error("RowToEntity", ex);
                        }
    
                    }
    
                }
                return t;
            }
    
    
    
    
            //转换可空类型 如:DateTime? 
            private static object ChanageType(object value, Type convertsionType)
            {
                //判断convertsionType类型是否为泛型,因为nullable是泛型类,
                if (convertsionType.IsGenericType &&
                    //判断convertsionType是否为nullable泛型类
                    convertsionType.GetGenericTypeDefinition().Equals(typeof(Nullable<>)))
                {
                    if (value == null || value.ToString().Length == 0)
                    {
                        return null;
                    }
    
                    //如果convertsionType为nullable类,声明一个NullableConverter类,该类提供从Nullable类到基础基元类型的转换
                    NullableConverter nullableConverter = new NullableConverter(convertsionType);
                    //将convertsionType转换为nullable对的基础基元类型
                    convertsionType = nullableConverter.UnderlyingType;
                }
                return Convert.ChangeType(value, convertsionType);
            }
  • 相关阅读:
    BZOJ2005 能量汇集 【gcd求和】
    莫比乌斯反演
    匈牙利算法 求二分图最大匹配
    HDU3507 print article【斜率优化dp】
    tyvj1305 最大子序和 【单调队列优化dp】
    NOIP2017 列队 题解报告【56行线段树】
    NOIP2017 宝藏 题解报告【状压dp】
    NOIP2017 逛公园 题解报告 【最短路 + 拓扑序 + dp】
    好的软件测试人员简历是什么样子的?
    淘宝网-接口测试白皮书V0.1
  • 原文地址:https://www.cnblogs.com/DoNetCShap/p/13603214.html
Copyright © 2011-2022 走看看