select *
from table1
where Deptno not in (select distinct Deptno from table2)
我不确定如何将此SQL转换为lambda表达式。请帮助我。
答案 0 :(得分:1)
这样的事情应该有效
from x in table1
where !(from y in table2 select y.Deptno).Distinct().Contains(x.Deptno)
select x
答案 1 :(得分:-1)