5

错误:LINQ to Entities 无法识别方法“System.String Aggregate[String,String](System.Collections.Generic.IEnumerable 1[System.String], System.String, System.Func3[System.String,System.String,System.String])”方法,并且此方法不能被翻译成商店表达式。

Linq 表达式:

      Items = context.TESTANSWER.Where(x => x.ID == 6729223232)
            .Join(context.QUESTIONREPOs, x => x.QUESTIONID, y => y.ID, (x, y) => new { x = x, y = y })
            .Join(context.OPTIONREPOs, p => p.x.QUESTIONID, q => q.QUESTIONID, (p, q) => new { p = p, q = q }).Where(p => p.p.x.RESPONSEID == p.q.ID)
            .GroupJoin(context.TESTANSWERASSOCIATION, c => c.p.x.ID, b => b.TESTANSWERID, (c, b) => new { c = c, b = b })
            .SelectMany(
                n => n.b.DefaultIfEmpty(),
                    (n, b) =>
                        new QuestListItemObj
                        {
                            State = n.c.p.x.STATE,
                            Association = n.b.Select(l => l.ASSOCIATION.TITLE).ToList().Aggregate((s, t) => s + ", " + t),
                            Description = n.c.p.y.DESCRIPTION,
                            Question = n.c.p.y.QUESTION,
                            Answer = n.c.q.OPTIONTEXT,
                        }).ToList();

我也刚刚尝试过 SelectMany 但得到了同样的错误..

 Affiliaiton = n.b.SelectMany(l => l.AFFILIATION.TITLE).Aggregate(string.Empty, (s, t) => s + ", " + t),
4

2 回答 2

5

你有一个IQueryable转换为 SQL 的。你Aggregate的方法是 SQL 未知的,所以没有办法翻译它,你得到了你的异常。

一种可能的方法是先打电话AsEnumerable()。这将导致查询执行并从您的 SQL Server 获取数据,其余操作在内存中执行(而不是在您的 SQL Server 上)。

myQuery.AsEnumerable().Aggregate(...)
于 2013-10-18T15:53:47.010 回答
3

正如错误消息告诉您的那样,数据库不知道如何将该代码转换为 SQL。

幸运的是,它确实没有必要这样做。与其将数据放入 DB 端的逗号分隔字符串中,不如将其拉下并在 C# 中将其制成一个字符串。它提取相同数量的数据,因此没有真正的理由使用数据库。

您可以使用AsEnumerable来确保以下操作是 linq to object 中的一个,而不是 DB 端,但在这种情况下,它Aggreagte是一个用于将值附加到字符串的糟糕工具。只需使用String.Join.

var query = n.b.SelectMany(l => l.AFFILIATION.TITLE);


//not very efficient option, but will work
string data1 = query.AsEnumerable().
    .Aggregate(string.Empty, (s, t) => s + ", " + t);

//faster, more efficient, simpler to write, and clearer to the reader.
string data2 = string.Join(", ", query);
于 2013-10-18T15:54:32.353 回答