博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2010年1月25日

摘要: public class CollectionHelper{ private CollectionHelper() { } public static DataTable ConvertTo<T>(IList<T> list) { DataTable table = CreateTable<T>(); Type entityType = typeof(T); PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(entityType); foreach (T item i 阅读全文

posted @ 2010-01-25 23:40 codingsilence 阅读(245) 评论(0) 推荐(0) 编辑

摘要: /// <summary> /// DataTable 转换为List 集合 /// </summary> /// <typeparam name="TResult">类型</typeparam> /// <param name="dt">DataTable</param> /// <returns></returns> public static List<TResult> ToList<TResult>(DataTable dt) 阅读全文

posted @ 2010-01-25 22:11 codingsilence 阅读(223) 评论(0) 推荐(0) 编辑

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Reflection;using System.Collections;namespace GrdVEx.Common{ public class DataTableConvert { /**/ /// <summary> /// 将集合类转换成DataTable 阅读全文

posted @ 2010-01-25 22:00 codingsilence 阅读(152) 评论(0) 推荐(0) 编辑