我正在尝试在我的LINQ查询中外连接一个带有内联表值函数的表,但是我在运行时遇到了查询编译错误:
“查询尝试通过嵌套查询调用'OuterApply',但'OuterApply'没有相应的密钥。”
我的linq语句如下:
var testQuery = (from accountBase in ViewContext.AccountBases
join advisorConcatRaw in ViewContext.UFN_AccountAdvisorsConcatenated_Get()
on accountBase.AccountId equals advisorConcatRaw.AccountId into advisorConcatOuter
from advisorConcat in advisorConcatOuter.DefaultIfEmpty()
select new
{
accountBase.AccountId,
advisorConcat.Advisors
}).ToList();
功能定义如下:
CREATE FUNCTION dbo.UFN_AccountAdvisorsConcatenated_Get()
RETURNS TABLE
AS
RETURN
SELECT AP.AccountId,
LEFT(AP.Advisors, LEN(AP.Advisors) - 1) AS Advisors
FROM ( SELECT DISTINCT
AP.AccountId,
( SELECT AP2.PropertyValue + ', '
FROM dbo.AccountProperty AP2 WITH (NOLOCK)
WHERE AP2.AccountId = AP.AccountId
AND AP2.AccountPropertyTypeId = 1 -- Advisor
FOR XML PATH('')) AS Advisors
FROM dbo.AccountProperty AP WITH (NOLOCK)) AP;
我可以直接在sql中成功执行连接,如下所示:
SELECT ab.accountid,
advisorConcat.Advisors
FROM accountbase ab
LEFT OUTER JOIN dbo.Ufn_accountadvisorsconcatenated_get() advisorConcat
ON ab.accountid = advisorConcat.accountid
有没有人有一个左外连接内联TVF到LINQ中的表到实体的工作示例 - 或者这是一个已知缺陷等?非常感谢。
答案 0 :(得分:1)
实体框架需要知道TVF结果的主键列是做什么的左连接。基本上,您需要创建一个与您的TVF结果具有相同模式的假表,并在模型浏览器中更新TVF以返回新创建的表类型而不是默认复杂类型。您可以参考this answer获取更多详细信息。