摘要: /// 转记录表到模型列表 /// 模型类型 /// 记录表 /// 模型列表 public static List ConvertToModelList(DataTable table) { List result = new List(); if (null == table || 0 == table.Rows.Count) { return result; } foreach (DataRow dr in table.Rows) ... 阅读全文
posted @ 2014-04-10 09:06 稚涩青春 阅读(148) 评论(0) 推荐(0) 编辑