DataTable中Linq查询(where,group by)

Posted liuperit

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataTable中Linq查询(where,group by)相关的知识,希望对你有一定的参考价值。

 

//经理
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)的主要内容,如果未能解决你的问题,请参考以下文章

C# 使用带有 where 子句的 Linq 查询作为 dataTable 上的变量

循环 LINQ 查询并将结果附加到 DataTable

从 Linq 查询返回类型化的 DataTable

SQL Where in to Linq with DataTable

使用 DataContext 从 LINQ 查询中填充 DataTable 的最快方法

linq查询结果怎么转换成datatable