如何将以下sql查询转换为lambda表达式
select * from a left join b
on a.Id = b.a_Id and b.Status_ID = 44
where b.a_ID is null
好吧,我看到很多人投了反对票,没有人提出理由。.
我可以执行以下操作
_dbContext.a.
Join(_dbContext.b,
a=>a.Id,
b=>b.a_ID,
(a,b) => new {a=a,b=b})
我不能做的是添加联接的第二个条件
我正在尝试复制以下帖子中要求的类似内容
How to exclude records with certain values in sql select
但尝试使用C#lambda