Is there an equivalent of a SQL IN statement in LINQ to objects?
|
|
|
|
|
|
|
Yes - Contains.
(In LINQ to SQL this ends up as an "IN" query.) Note that in LINQ to Objects the above isn't really very efficient. You'd be better off with a join:
(This could still be done with dot notation of course, but it ends up being somewhat messier.) |
|||
|
