vote up 1 vote down star

Can anyone tell me how to write a nested SQL query like

SELECT * FROM X WHERE X.ID IN (SELECT Y.XID FROM Y WHERE .....)

in LINQ?

flag

50% accept rate

3 Answers

vote up 3 vote down check

You could try:

var yIds = from y in dataContext.Y
           where ...
           select y.XId;

var query = from x in dataContext.X
            where yIds.Contains(x.Id)
            select x;

I don't know whether it will work though - any reason why you don't want to just do a join instead? For instance:

var query = from x in dataContext.X
            join y in dataContext.Y.Where(...) on x.Id equals y.Xid
            select x;
link|flag
There needs to be a "someone else is typing exactly the same answer as you" status popup on this site :) – Ch00k Dec 15 '08 at 9:15
Reason to not join: If x is 1 to many with y, the join will give duplicated x's. – David B Dec 15 '08 at 13:46
@DavidB: True. I wonder what adding a call to Distinct() at the end would do... – Jon Skeet Dec 15 '08 at 14:55
vote up 3 vote down

To do an IN in sql, you need to use the Contains function in Linq.

So for example:

var query = from x in GetX()
            where (from y in GetY() select y.xID).Contains(x.xID)
            select x;

You could also define the inner linq query seperately if you like, which is a bit more readable

link|flag
vote up 0 vote down

Thanks you SO MUCH Ch00k, your second answer was exactly what I was desperately looking for all day :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.