gpt4 book ai didi

c# - LINQ TO 数据集 : Multiple group by on a data table

转载 作者:可可西里 更新时间:2023-11-01 08:22:19 25 4
gpt4 key购买 nike

我正在使用 Linq to dataset 来查询数据表。如果我想对数据表的“Column1”执行分组,我使用以下查询

var groupQuery = from table in MyTable.AsEnumerable()
group table by table["Column1"] into groupedTable

select new
{
x = groupedTable.Key,
y = groupedTable.Count()
}

现在我想对两列“Coulmn1”和“Column2”进行分组。谁能告诉我语法或提供一个链接来解释数据表上的多个分组依据??

谢谢

最佳答案

您应该创建一个匿名类型来按多列进行分组:

var groupQuery = from table in MyTable.AsEnumerable()
group table by new { column1 = table["Column1"], column2 = table["Column2"] }
into groupedTable
select new
{
x = groupedTable.Key, // Each Key contains column1 and column2
y = groupedTable.Count()
}

关于c# - LINQ TO 数据集 : Multiple group by on a data table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1225710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com