C#實現DataTable轉換成IList的方法
本文實例講述了C#實現DataTable轉換成IList的方法。分享給大家供大家參考,具體如下:
在用C#作開發(fā)的時候經常要把DataTable轉換成IList;操作DataTable比較麻煩,把DataTable轉換成IList,以對象實體作為IList的元素,操作起來就非常方便。
注意:實體的屬性必須和數據庫中的字段必須一一對應,或者數據庫字段名.ToLower().Contains(實體屬性名.ToLower())
數據類型暫時至支持int、string、DateTime、float、double
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Reflection; namespace TBToListTest { public class TBToList<T> where T : new() { /// <summary> /// 獲取列名集合 /// </summary> private IList<string> GetColumnNames(DataColumnCollection dcc) { IList<string> list = new List<string>(); foreach (DataColumn dc in dcc) { list.Add(dc.ColumnName); } return list; } /// <summary> ///屬性名稱和類型名的鍵值對集合 /// </summary> private Hashtable GetColumnType(DataColumnCollection dcc) { if (dcc == null || dcc.Count == 0) { return null; } IList<string> colNameList = GetColumnNames(dcc); Type t = typeof(T); PropertyInfo[] properties = t.GetProperties(); Hashtable hashtable = new Hashtable(); int i = 0; foreach (PropertyInfo p in properties) { foreach (string col in colNameList) { if (col.ToLower().Contains(p.Name.ToLower())) { hashtable.Add(col, p.PropertyType.ToString() + i++); } } } return hashtable; } /// <summary> /// DataTable轉換成IList /// </summary> /// <param name="dt"></param> /// <returns></returns> public IList<T> ToList(DataTable dt) { if (dt == null || dt.Rows.Count == 0) { return null; } PropertyInfo[] properties = typeof(T).GetProperties();//獲取實體類型的屬性集合 Hashtable hh = GetColumnType(dt.Columns);//屬性名稱和類型名的鍵值對集合 IList<string> colNames = GetColumnNames(hh);//按照屬性順序的列名集合 List<T> list = new List<T>(); T model = default(T); foreach (DataRow dr in dt.Rows) { model = new T();//創(chuàng)建實體 int i = 0; foreach (PropertyInfo p in properties) { if (p.PropertyType == typeof(string)) { p.SetValue(model, dr[colNames[i++]], null); } else if (p.PropertyType == typeof(int)) { p.SetValue(model, int.Parse(dr[colNames[i++]].ToString()), null); } else if (p.PropertyType == typeof(DateTime)) { p.SetValue(model, DateTime.Parse(dr[colNames[i++]].ToString()), null); } else if (p.PropertyType == typeof(float)) { p.SetValue(model, float.Parse(dr[colNames[i++]].ToString()), null); } else if (p.PropertyType == typeof(double)) { p.SetValue(model, double.Parse(dr[colNames[i++]].ToString()), null); } } list.Add(model); } return list; } /// <summary> /// 按照屬性順序的列名集合 /// </summary> private IList<string> GetColumnNames(Hashtable hh) { PropertyInfo[] properties = typeof(T).GetProperties();//獲取實體類型的屬性集合 IList<string> ilist = new List<string>(); int i = 0; foreach (PropertyInfo p in properties) { ilist.Add(GetKey(p.PropertyType.ToString() + i++, hh)); } return ilist; } /// <summary> /// 根據Value查找Key /// </summary> private string GetKey(string val, Hashtable tb) { foreach (DictionaryEntry de in tb) { if (de.Value.ToString() == val) { return de.Key.ToString(); } } return null; } } }
namespace TBToListTest { //實體 public class Person { public int ID { set; get; } public string Name { set; get; } public string Age { set; get; } public string Lover { set; get; } } }
using System; using System.Data; namespace TBToListTest { class Program { static void Main(string[] args) { TBToList<Person> tol = new TBToList<Person>(); Console.WriteLine(); DataTable dt = GetTable(); tol.ToList(dt); Console.Read(); } public static DataTable GetTable() { DataTable dt = new DataTable(); dt.Columns.Add("ID"); dt.Columns.Add("Age"); dt.Columns.Add("Lover"); dt.Columns.Add("Name"); DataRow dr = dt.NewRow(); dr["ID"] = 1; dr["Age"] = "Age1"; dr["Lover"] = "Lover1"; dr["Name"] = "Name1"; dt.Rows.Add(dr); DataRow dr1 = dt.NewRow(); dr1["ID"] = 2; dr1["Age"] = "Age2"; dr1["Lover"] = "Lover2"; dr1["Name"] = "Name2"; dt.Rows.Add(dr1); return dt; } } }
更多關于C#相關內容感興趣的讀者可查看本站專題:《C#數據結構與算法教程》、《C#常見控件用法教程》、《C#面向對象程序設計入門教程》及《C#程序設計之線程使用技巧總結》
希望本文所述對大家C#程序設計有所幫助。
您可能感興趣的文章
- 01-10C#實現txt定位指定行完整實例
- 01-10WinForm實現仿視頻播放器左下角滾動新聞效果的方法
- 01-10C#實現清空回收站的方法
- 01-10C#實現讀取注冊表監(jiān)控當前操作系統已安裝軟件變化的方法
- 01-10C#實現多線程下載文件的方法
- 01-10C#實現Winform中打開網頁頁面的方法
- 01-10C#實現遠程關閉計算機或重啟計算機的方法
- 01-10C#自定義簽名章實現方法
- 01-10C#文件斷點續(xù)傳實現方法
- 01-10winform實現創(chuàng)建最前端窗體的方法


閱讀排行
本欄相關
- 01-10C#通過反射獲取當前工程中所有窗體并
- 01-10關于ASP網頁無法打開的解決方案
- 01-10WinForm限制窗體不能移到屏幕外的方法
- 01-10WinForm繪制圓角的方法
- 01-10C#實現txt定位指定行完整實例
- 01-10WinForm實現仿視頻播放器左下角滾動新
- 01-10C#停止線程的方法
- 01-10C#實現清空回收站的方法
- 01-10C#通過重寫Panel改變邊框顏色與寬度的
- 01-10C#實現讀取注冊表監(jiān)控當前操作系統已
隨機閱讀
- 08-05dedecms(織夢)副欄目數量限制代碼修改
- 01-10C#中split用法實例總結
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10使用C語言求解撲克牌的順子及n個骰子
- 04-02jquery與jsp,用jquery
- 01-10delphi制作wav文件的方法
- 01-11ajax實現頁面的局部加載
- 01-10SublimeText編譯C開發(fā)環(huán)境設置
- 08-05織夢dedecms什么時候用欄目交叉功能?