How to do a SQL “Where Exists” in LINQ to Entities?

前端 未结 2 917
难免孤独
难免孤独 2020-12-14 07:18

I really want to do something like this:

Select * 
from A join B on A.key = B.key join C on B.key = C.key -- propagated keys
where exists (select null from B         


        
2条回答
提交回复
热议问题