C# dataTable 轉 IList 問題

來源:互聯網
上載者:User

大家在使用.NET開發時把查詢結果以DataTable返回很方便,但是在檢索資料時又很麻煩,沒有模型類型檢索方便。

所以很多人都是按照以下方式做的:

// 獲得查詢結果
DataTable dt = DbHelper.ExecuteDataTable(...);
// 把DataTable轉換為IList<UserInfo>
IList<UserInfo> users = ConvertToUserInfo(dt);

問題:如果此系統有幾十上百個模型,那不是每個模型中都要寫個把DataTable轉換為此模型的方法嗎?
解決:能不能寫個通用類,可以把DataTable轉換為任何模型,呵呵,這就需要利用反射和泛型了。

以下是核心代碼,經過測試,效能不錯,大家可以根據實際情況改善


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

 

namespace Flexzoo.Data
{
    /// <summary>
    /// 實體轉換輔助類
    /// </summary>
    public class ModelConvertHelper<T> where  T : new()
    {
        public static IList<T> ConvertToModel(DataTable dt)
        {
            // 定義集合
            IList<T> ts = new List<T>();

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

        }
    }
}

使用方式:

// 獲得查詢結果
DataTable dt = DbHelper.ExecuteDataTable(...);
// 把DataTable轉換為IList<UserInfo>
IList<UserInfo> users = ModelConvertHelper<UserInfo>.ConvertToModel(dt);

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.