How would I translate the following SQL query in to a comparable LINQ query?
select * from Dept
where Id not in (
Select Id
from Employee
where Salary > 100);
|
|
Try something like this:
|
|||
|
|
|
How about this?
|
|||