如何在字典列表上动态构建分组依据
本文关键字:构建 动态 字典 列表 | 更新日期: 2023-09-27 18:35:48
我正在尝试对IEnumerable执行分组。问题是我在编译时不知道要按哪些字段进行分组。我在堆栈上找到了另一篇文章,它解释了当类已知并具有属性时如何执行此操作,但就我而言,我正在处理字典,并且键也仅在运行时已知。
我的代码类似于这样的东西(我知道这不会编译......
private object GetValuesGroupedBy(List<string> groupbyNames, List<string> summableNames)
{
// get the list of items in the grid
var listOfDicos = grid.AllItems;
return listOfDicos
.GroupBy(x => new { x[groupbyNames[0]],
x[groupbyNames[1]],
x[groupbyNames[2]] })
.Select(group => new { group.Key,
group.Sum(x => x[summableNames[0]]),
group.Sum(x => x[summableNames[1]]) });
}
有什么想法吗?我已经开始研究动态 LINQ,但卡住了(因为我使用的不是属性,而是键/值集合)......
谢谢大家!!
肖恩
所以我能够让小组工作...(选择语句是另一个问题)。感谢c0d1ng让我走上了正确的道路。语法不是那么简单,因为我使用的是索引器而不是属性......
下面是我的代码:
private void GetValuesGroupedBy(List<Dictionary<string, object>> list, List<string> groupbyNames, List<string> summableNames)
{
// build the groupby string
StringBuilder groupBySB = new StringBuilder();
groupBySB.Append("new ( ");
bool useComma = false;
foreach (var name in groupbyNames)
{
if (useComma)
groupBySB.Append(", ");
else
useComma = true;
groupBySB.Append("it['"");
groupBySB.Append(name);
groupBySB.Append("'"]");
groupBySB.Append(" as ");
groupBySB.Append(name);
}
groupBySB.Append(" )");
var groupby = list.GroupBy(groupBySB.ToString(), "it");
}