c# datatable如何转实体类

引用 https://www.cnblogs.com/H2921306656/p/6675327.html

然后做了小改动,转实体类时,判断不同类型的字段,然后自动转换成相关的字段类型

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;

namespace DealFile
{

    public class DatatableToEntity where T : new()
    {
        /// 
        /// 填充对象列表:用DataSet的第一个表填充实体类
        /// 
        /// DataSet
        /// 
        public static List FillModel(DataSet ds)
        {
            if (ds == null || ds.Tables[0] == null || ds.Tables[0].Rows.Count == 0)
            {
                return null;
            }
            else
            {
                return FillModel(ds.Tables[0]);
            }
        }

        //   
        /// 填充对象列表:用DataSet的第index个表填充实体类
        ///   
        public static List FillModel(DataSet ds, int index)
        {
            if (ds == null || ds.Tables.Count <= index || ds.Tables[index].Rows.Count == 0)
            {
                return null;
            }
            else
            {
                return FillModel(ds.Tables[index]);
            }
        }

        ///   
        /// 填充对象列表:用DataTable填充实体类
        ///   
        public static List FillModel(DataTable dt)
        {
            if (dt == null || dt.Rows.Count == 0)
            {
                return null;
            }
            List modelList = new List();
            foreach (DataRow dr in dt.Rows)
            {
                //T model = (T)Activator.CreateInstance(typeof(T));  
                T model = new T();
                for (int i = 0; i < dr.Table.Columns.Count; i++)
                {
                    PropertyInfo propertyInfo = model.GetType().GetProperty(dr.Table.Columns[i].ColumnName, BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance);

                    if (propertyInfo != null && dr[i] != DBNull.Value)
                    {
                        string value = dr[i] == null ? "" : dr[i].ToString();
                        //string typestr = dr[i].GetType().Name;
                        //if(typestr.Equals("DateTime"))
                        //value = dr[i].ToString();
                        
                        Type type = propertyInfo.PropertyType;
                        if (type == typeof(Int32))
                        {
                            var convertType = Convert.ToInt32(value);
                            propertyInfo.SetValue(model, convertType, null);
                        }
                        else if (type == typeof(decimal))
                        {
                            propertyInfo.SetValue(model, Convert.ToDecimal(value), null);
                        }
                        else if (type == typeof(DateTime))
                        {
                            propertyInfo.SetValue(model, Convert.ToDateTime(value), null);
                        }
                        else if (type == typeof(string))
                        {
                            propertyInfo.SetValue(model, value, null);
                        }
                        
                    }

                }

                modelList.Add(model);
            }
            return modelList;
        }

        ///   
        /// 填充对象:用DataRow填充实体类
        ///   
        public static T FillModel(DataRow dr)
        {
            if (dr == null)
            {
                return default(T);
            }

            //T model = (T)Activator.CreateInstance(typeof(T));  
            T model = new T();

            for (int i = 0; i < dr.Table.Columns.Count; i++)
            {
                PropertyInfo propertyInfo = model.GetType().GetProperty(dr.Table.Columns[i].ColumnName, BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance);
                if (propertyInfo != null && dr[i] != DBNull.Value)
                {
                    string value = dr[i] == null ? "" : dr[i].ToString();
                    //string typestr = dr[i].GetType().Name;
                    //if(typestr.Equals("DateTime"))
                    //value = dr[i].ToString();
                    //propertyInfo.SetValue(model, value, null);
                    Type type = propertyInfo.PropertyType;
                    if (type == typeof(Int32))
                    {
                        var convertType = Convert.ToInt32(value);
                        propertyInfo.SetValue(model, convertType, null);
                    }
                    else if (type == typeof(decimal))
                    {
                        propertyInfo.SetValue(model, Convert.ToDecimal(value), null);
                    }
                    else if (type == typeof(DateTime))
                    {
                        propertyInfo.SetValue(model, Convert.ToDateTime(value), null);
                    }
                    else if (type == typeof(string))
                    {
                        propertyInfo.SetValue(model, value, null);
                    }
                }
            }
            return model;
        }

    }
}

 

转换代码是这个:上述代码中已添加

Type type = propertyInfo.PropertyType;
                        if (type == typeof(Int32))
                        {
                            var convertType = Convert.ToInt32(value);
                            propertyInfo.SetValue(model, convertType, null);
                        }
                        else if (type == typeof(decimal))
                        {
                            propertyInfo.SetValue(model, Convert.ToDecimal(value), null);
                        }
                        else if (type == typeof(DateTime))
                        {
                            propertyInfo.SetValue(model, Convert.ToDateTime(value), null);
                        }
                        else if (type == typeof(string))
                        {
                            propertyInfo.SetValue(model, value, null);
                        }

你可能感兴趣的:(c#)