I'm trying to query an Entity to return multiple rows based on a filter.
For instance in SQL we have:
SELECT * FROM table WHERE field IN (1, 2, 3)
How do I do it in LINQ to Entities?
|
|
I'm trying to query an Entity to return multiple rows based on a filter. For instance in SQL we have:
How do I do it in LINQ to Entities?
|
|||
|
|
|
|
Although I did recieved some prompt answers, and I thank you all for that. The method shown on the replies I've got didn't work. I had to keep searching until I eventually found a way to do what I needed in a post from Frederic Ouellet at Microsoft Forums. In short it's the extension method below:
|
||
|
|
|
|
you could do something like this:
|
||||
|
|
|
This is an exact representation of the query you have in SQL. int[] productList = new int[] { 1, 2, 3};
If it were entities, could you describe the problem better? The exact SQL representation would be...
|
||
|
|