月夜钓钱江鱼

醉后不知天在水,满船清梦压星河。
02 2023 档案
List转换成DataSet集合
摘要:List对象集合转换成DataSet 1 public DataSet ConvertToDataSet<T>(IList<T> list) 2 { 3 if (list == null || list.Count <= 0) 4 { 5 return null; 6 } 7 DataSet ds 阅读全文
posted @ 2023-02-03 14:15 湘灵 阅读(359) 评论(0) 推荐(0) 编辑