可能重复:
Using Linq not equals
我有一个LINQ查询
var reserved = from reff in RSC.tbl_Reserve
where reff.ClerkID == _id
select new { reff.FoodName,reff.FoodID };
var show= from rre in reserved
join ffp in RSC.tbl_FoodPlan
on rre.FoodID NOT equals ffp.FoodID
select new {...};
在show query中我想使用NOT EQUALS但是我不能使用它,是解决方案吗? 如何在LINQ查询中使用NOT EQUAL?
答案 0 :(得分:2)
查看以下问题,看看他们是否指导您:
Is there a "not equal" in a linq join
"NOT IN" clause in LINQ to Entities
所有这些结果都来自快速谷歌搜索!