如何在字典列表上动态构建分组

时间:2012-05-29 11:12:50

标签: c# linq dynamic datatable group-by

我正在尝试在IEnumerable上执行groupby。问题是我在编译时不知道我想要分组的字段。我在堆栈上找到了another post,它解释了当类已知且具有属性时如何执行此操作,但在我的情况下,我正在处理字典,并且密钥也只在运行时才知道。

我的代码会像这样(我知道这不会编译......):

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但是卡住了(因为我没有使用属性而是键/值集合)...

谢谢大家!!

肖恩

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

所以我能够让groupby工作......(select语句是另一个问题)。感谢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");
    }