我正在尝试构建一个反映“选择新”查询的表达式树。
我正在使用 Ethan 对这个问题的回答。它适用于常见列表,但使用 LINQ to Entities 我得到了这个例外:
System.NotSupportedException: Unable to create a constant value of type X.
Only primitive types or enumeration types are supported in this context.
其中 X 是我要查询的实体。
使用调试器,这是带有表达式树的 IQueryable:
SELECT [Extent1].[Id] AS [Id],
[Extent1].[Nombre] AS [Nombre],
[Extent1].[Apellido] AS [Apellido]
FROM [dbo].[Empleadoes] AS [Extent1]
.Select(t => new Nombre;String;() {Nombre = t.Nombre})
这是使用普通 linq 表示法的 IQueryable (实际上不是相同的查询,但要明白这一点 - 它们是不同的)
SELECT [Extent1].[Dni] AS [Dni],
[Extent1].[Nombre] + N' ' + [Extent1].[Apellido] AS [C1]
FROM [dbo].[Empleadoes] AS [Extent1]
任何帮助表示赞赏。谢谢。