摘要:
C# DataTable 转 List<Model>的方法方法一:public static IList<T> ConvertTo<T>(DataTable table) { if (table == null) { return null; } List<DataRow> rows = new List<DataRow>(); foreach (DataRow row in table.Rows) ... 阅读全文
posted @ 2013-02-25 14:25
the Jade Emperor
阅读(409)
评论(0)
推荐(0)

浙公网安备 33010602011771号