Hello,
I have a query with an inline query, which I am not sure how to translate into a linq query. I am trying to get a list of items from a table, where this is no foreign key entry in a second cross reference table.
Here is the query.
select *
from table1
where not exists (
select *
from table2
where table1.PK = table2.PK_table1)
Any help would be appreciated.
Thanks,
Shaun