1. 程式人生 > >將datatable轉換成模型

將datatable轉換成模型

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

namespace RongGuang.Extend
{
class ModelConvertHelper where T : new()
{
public static IList ConvertToModel(DataTable dt)
{
// 定義集合
IList ts = new List();

        // 獲得此模型的型別 
        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);
                }
            }

            ts.Add(t);
        }

        return ts;

    }


}

}