欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linq初学用法(3) 从dataTable 取出一列值

程序员文章站 2022-07-04 08:47:12
...
List<string>  timeList = (from d in _dt_base.AsEnumerable() select d.Field<string>("gettime")).ToList();


Dictionary<string, DataRow>  _dic_base = _dt_base.Rows.Cast<DataRow>().ToDictionary(x => ((DateTime)x["gettime"]).ToString("yyyy-MM-dd"), x =>x);

dataTable 转List 转Dictionary