程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> 表轉List泛型數組

表轉List泛型數組

編輯:C#基礎知識

轉換那塊怕忘記,留存一下

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

namespace App.Util
{
    public class DtConvertListHelper<T> where T : new()
    {
        /// <summary>  
        /// 利用反射和泛型  
        /// </summary>  
        /// <param name="dt"></param>  
        /// <returns></returns>  
        public static List<T> ConvertToList(DataTable dt)
        {

            // 定義集合  
            List<T> ts = new List<T>();

            // 獲得此模型的類型  
            Type type = typeof(T);
            //定義一個臨時變量  
            string tempName = string.Empty;
            //遍歷DataTable中所有的數據行  
            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,Convert.ChangeType(value,pi.PropertyType), null);
                            if (!pi.PropertyType.IsGenericType)
                            {
                                //非泛型
                                pi.SetValue(t, string.IsNullOrEmpty(value.ToString()) ? null : Convert.ChangeType(value, pi.PropertyType), null);
                            }
                            else
                            {
                                //泛型Nullable<>
                                Type genericTypeDefinition = pi.PropertyType.GetGenericTypeDefinition();
                                if (genericTypeDefinition == typeof(Nullable<>))
                                {
                                    pi.SetValue(t, string.IsNullOrEmpty(value.ToString()) ? null : Convert.ChangeType(value, Nullable.GetUnderlyingType(pi.PropertyType)), null);
                                }
                            }
                        }
                    }
                }
                //對象添加到泛型集合中  
                ts.Add(t);
            }

            return ts;

        }
    }
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved