摘要: /// <summary> /// 将泛类型集合List类转换成DataTable /// </summary> /// <param name="list">泛类型集合</param> /// <returns></returns> public static DataTable ListToTable<T>(List<T> entitys) { //检查实体集合不能为空 if (entitys == null || entitys.Count < 1) ... 阅读全文
posted @ 2012-05-08 16:02 bule 阅读(447) 评论(0) 推荐(0) 编辑