WEB开发网
开发学院软件开发C语言 扩展方法 DataTable 和List 相互转换 阅读

扩展方法 DataTable 和List 相互转换

 2009-05-21 08:30:12 来源:WEB开发网   
核心提示: 相反 的也需要List<T> 转换为DataTable 我们可以通过扩展IEnumberable<T> 来实现/// <summary> /// 转换为一个DataTable /// </summary> /// <typeparam

相反 的也需要List<T> 转换为DataTable 我们可以通过扩展IEnumberable<T> 来实现

/// <summary>
        /// 转换为一个DataTable
        /// </summary>
        /// <typeparam name="TResult"></typeparam>
        /// <param name="value"></param>
        /// <returns></returns>
        public static DataTable ToDataTable<TResult>(this IEnumerable<TResult> value) where TResult : class
        {
            //创建属性的集合
            List<PropertyInfo> pList = new List<PropertyInfo>();
            //获得反射的入口
            Type type = typeof(TResult);
            DataTable dt = new DataTable();
            //把所有的public属性加入到集合 并添加DataTable的列
            Array.ForEach<PropertyInfo>(type.GetProperties(), p => { pList.Add(p);dt.Columns.Add(p.Name, p.PropertyType); });     
            foreach (var item in value)
            {
                //创建一个DataRow实例
                DataRow row = dt.NewRow();
                //给row 赋值
                pList.ForEach(p => row[p.Name] = p.GetValue(item, null));
                //加入到DataTable
                dt.Rows.Add(row);
            }
            return dt;
        }
    }

可以通过上面的代码看出  都是主要通过反射 来实现的.  反射的效率似有点慢.   但是可以接受..

当然你也可以通过表达式树 动态的构造Lambda表达式来提高效率.. 

系列文章:

扩展方法(2) GridView单元格合并

上一页  1 2 

Tags:扩展 方法 DataTable

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接