我正在使用Linq来查询数据表的数据集。如果我想对数据表的“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/

10-11 08:47