码迷,mamicode.com
首页 > 其他好文 > 详细

DataTable中Linq查询(where,group by)

时间:2017-06-02 15:48:11      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:linq   rabl   tab   str   int   lin   field   style   margin   

 

//经理
List<string> jtlist = (from t in jtTable.AsEnumerable()
group t by new
{
t1 = t.Field<string>("JTManager")
} into m
select new
{
JTManager = m.Key.t1
} into c
where !string.IsNullOrEmpty(c.JTManager)
select c.JTManager).ToList();

DataTable中Linq查询(where,group by)

标签:linq   rabl   tab   str   int   lin   field   style   margin   

原文地址:http://www.cnblogs.com/liuperit/p/6933382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!