最佳答案
我有以下 SQL,我试图翻译成 LINQ:
SELECT f.value
FROM period as p
LEFT OUTER JOIN facts AS f ON p.id = f.periodid AND f.otherid = 17
WHERE p.companyid = 100
我已经看到了左外部连接的典型实现(即。等) ,但不确定如何引入其他连接条件(AND f.otherid = 17
)
剪辑
为什么 AND f.otherid = 17
条件是 JOIN 的一部分,而不是在 WHERE 子句中?
因为某些行可能不存在 f
,我仍然希望包含这些行。如果条件应用在 WHERE 子句中,在 JOIN 之后-那么我不会得到我想要的行为。
不幸的是:
from p in context.Periods
join f in context.Facts on p.id equals f.periodid into fg
from fgi in fg.DefaultIfEmpty()
where p.companyid == 100 && fgi.otherid == 17
select f.value
似乎相当于这个:
SELECT f.value
FROM period as p
LEFT OUTER JOIN facts AS f ON p.id = f.periodid
WHERE p.companyid = 100 AND f.otherid = 17
这不是我想要的。