3

我正在尝试使用 Linq 表达式来构造查询,并且试图按多列进行分组。假设我有一个基本集合:

IEnumerable<Row> collection = new Row[]
{
    new Row() { Col1 = "a", Col2="x" },
    new Row() { Col1 = "a", Col2="x" },
    new Row() { Col1 = "a", Col2="y" },
};

我知道您可以使用 lambda 表达式对它们进行分组:

foreach (var grp in collection.GroupBy(item => new { item.Col1, item.Col2 }))
{
    Debug.Write("Grouping by " + grp.Key.Col1 + " and " + grp.Key.Col2 + ": ");
    Debug.WriteLine(grp.Count() + " rows");
}

如您所见,此分组正确:

Grouping by a and x: 2 rows
Grouping by a and y: 1 rows

但是现在,假设我收到一组要分组的选择器,它作为我的方法中的参数传递给我,并且实体类型是通用的:

void doLinq<T>(params Expression<Func<T,object>>[] selectors)
{
    // linq stuff
}

调用该方法的人会这样调用:

doLinq<Row>(entity=>entity.Col1, entity=>entity.Col2);

我将如何构建 group-by 表达式?

foreach (var grp in collection.GroupBy(
      item => new { 
          // selectors??
      }))
{
    // grp.Key. ??
}

编辑

我在上面进行了更新,希望能阐明为什么我需要这组选择器。

编辑#2

使doLinq中的实体类型成为通用的。

4

4 回答 4

1

我对 linq-to-sql 的了解非常有限,但是 GroupBy 里面的内容真的很重要吗?因为如果不是,您可以推出自己的 keySelector。无论如何,我用 Sql Server CE 和 Sql Server Express 都试过了,这似乎可行:

using System;
using System.Linq;
using System.Collections.Generic;
using System.Data.Linq;
using System.Linq.Expressions;

namespace ConsoleApplication1 {
    class Props {
        public List<object> list = new List<object>();
        public override bool Equals(object obj) {
            return Enumerable.SequenceEqual(list, (obj as Props).list);
        }
        public override int GetHashCode() {
            return list.Select(o => o.GetHashCode()).Aggregate((i1, i2) => i1 ^ i2);
        }
    }
    class Program {
        static void Main(string[] args) {
            Lol db = new Lol(@"Data Source=.\SQLExpress;Initial Catalog=Lol;Integrated Security=true");
            db.Log = Console.Out;
            doLinq(db.Test, row => row.Col1, row => row.Col2);
            Console.ReadLine();
        }
        static void doLinq<T>(Table<T> table, params Func<T, object>[] selectors) where T : class {
            Func<T, Props> selector = item => {
                var props = new Props();
                foreach (var sel in selectors) props.list.Add(sel(item));
                return props;
            };
            foreach (var grp in table.GroupBy(selector)) {
                Console.Write("Grouping by " + string.Join(", ", grp.Key.list) + ": ");
                Console.WriteLine(grp.Count() + " rows");
            }
        }
    }
}

Lol 数据库有一个三行表“测试”。输出是这样的:

SELECT [t0].[Col1], [t0].[Col2]
FROM [dbo].[Test] AS [t0]
-- Context: SqlProvider(Sql2008) Model: AttributedMetaModel Build: 4.0.30319.1

Grouping by a, x: 2 rows
Grouping by a, y: 1 rows

我检查了查询,似乎 linq-to-sql 足够聪明,不能在不能为 groupBy 生成 sql 时,所以它会遍历表的所有行,然后在客户端对它们进行分组。

编辑:为了完成而进行的少量添加,连接字符串现在假定为 Sql Server Express。

于 2012-04-15T21:21:36.067 回答
1

好吧,我假设你使用 linq-to-sql 或类似的东西,所以你需要表达式树。如果没有,可能还有其他可能性。

我可以看到的可能解决方案:

  • 动态链接

请参阅 Vladimir Perevalovs 的回答。

  • 手动构建整个 groupby 表达式树

请参阅 http://msdn.microsoft.com/en-us/library/bb882637.aspx

  • 丑陋的解决方法

好吧,那是我的部门:)

未经测试的代码:

 void doLinq(params string[] selectors) // checking two expressions for equality is messy, so I used strings
     foreach (var grp in collection.GroupBy(
          item => new { 
              Col1 = (selectors.Contains("Col1") ? item.Col1 : String.Empty),
              Col2 = (selectors.Contains("Col2") ? item.Col2 : String.Empty)
              // need to add a line for each column :(
          }))
     {
          string[] grouping = (new string[]{grp.Key.Col1, grp.Key.Col2 /*, ...*/ }).Where(s=>!s.IsNullOrEmpty()).ToArray();
          Debug.Write("Grouping by " + String.Join(" and ", grouping)+ ": ");
          Debug.WriteLine(grp.Count() + " rows");
     }
 }
于 2012-04-15T09:17:07.927 回答
1

你应该看看动态 Linq:http: //blogs.msdn.com/b/mitsu/archive/2008/02/07/linq-groupbymany-dynamically.aspx

于 2012-04-13T18:44:27.100 回答
0

该解决方案对我有用。它涉及两个部分:

  • 给定行值和选择器集,创建一个分组对象(我不雅地实现为 object[])。这涉及编译和调用行项目上的每个选择器的 lambda 表达式。
  • 为分组对象类型实现 IEquality(在我的例子中是 IEqualityComparer)。

第一部分

foreach (System.Linq.IGrouping<object[], T> g in collection.GroupBy(
    new Func<T, object[]>(
        item => selectors.Select(sel => sel.Compile().Invoke(item)).ToArray()
    ),
    new ColumnComparer()
)
{ ... }

第二部分

public class ColumnComparer : IEqualityComparer<object[]>
{
    public bool Equals(object[] x, object[] y)
    {
        return Enumerable.SequenceEqual(x, y);
    }

    public int GetHashCode(object[] obj)
    {
        return (string.Join("", obj.ToArray())).GetHashCode();
    }
}

这适用于基本的 Linq,而 Linq 则适用于 MySql 连接器。其他哪些 Linq 提供程序,以及它适用于哪种表达式类型是另一个问题......

于 2012-04-21T20:33:33.607 回答