Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using LINQ Entity framework. I have a SQL table and I want to get all the items in the table that have an ID that exist in a List

Is this possible with LINQ?

share|improve this question

2 Answers

up vote 6 down vote accepted

Yes, it is possible.

(from item in yourContext.YourTable where yourList.Contains(item.ID) select item).ToList();
share|improve this answer
Does this work in EF now? See: social.msdn.microsoft.com/forums/en-US/adodotnetentityframework/… – Magnus Jan 20 '12 at 7:05
That post is 3 years old. I believe it does now – Haris Hasan Jan 20 '12 at 7:31
@Magnus works since EF 4.0 – AakashM Jan 20 '12 at 8:53

You can do this with Contains its translated into sql IN:

context.SomeTable.Where(r => someListOfId.Contains(r.ID));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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