动态Linq Groupby SELECT键,列出<t> </t>

时间:2012-09-12 22:07:50

标签: c# linq

我正在使用Dynamic Linq帮助程序对数据进行分组。我的代码如下:

Employee[] empList = new Employee[6];
empList[0] = new Employee() { Name = "CA", State = "A", Department = "xyz" };
empList[1] = new Employee() { Name = "ZP", State = "B", Department = "xyz" };
empList[2] = new Employee() { Name = "AC", State = "B", Department = "xyz" };
empList[3] = new Employee() { Name = "AA", State = "A", Department = "xyz" };
empList[4] = new Employee() { Name = "A2", State = "A", Department = "pqr" };
empList[5] = new Employee() { Name = "BA", State = "B", Department = "pqr" };

var empqueryable = empList.AsQueryable();
var dynamiclinqquery  = DynamicQueryable.GroupBy(empqueryable, "new (State, Department)", "it");

如何从dynamiclinqquery中取回密钥和相应的分组项目列表,即IEnumerable of {Key,List}?

2 个答案:

答案 0 :(得分:8)

我通过定义一个投影Key和Employees List的选择器解决了这个问题。

       var eq = empqueryable.GroupBy("new (State, Department)", "it").Select("new(it.Key as Key, it as Employees)");
       var keyEmplist = (from dynamic dat in eq select dat).ToList();

       foreach (var group in keyEmplist)
       {
           var key = group.Key;
           var elist = group.Employees;

           foreach (var emp in elist)
           {

           }                                          
       }

答案 1 :(得分:0)

GroupBy方法仍应返回实现IEnumerable<IGrouping<TKey, TElement>>的内容。

虽然你可能无法实际投射它(我假设它是dynamic),但你当然可以对它进行调用,如下所示:

foreach (var group in dynamiclinqquery)
{
    // Print out the key.
    Console.WriteLine("Key: {0}", group.Key);

    // Write the items.
    foreach (var item in group)
    {
        Console.WriteLine("Item: {0}", item);
    }
}