vote up 5 vote down star
1

Does anybody know how to apply a "where in values" type condition using LINQ-to-Entities? I've tried the following but it doesn't work:

var values = new[] { "String1", "String2" }; // some string values

var foo = model.entitySet.Where(e => values.Contains(e.Name));

I believe this works in LINQ-to-SQL though? Any thoughts?

flag

5 Answers

vote up 0 vote down check

It is somewhat of a shame that Contains is not supported in Linq to Entities.

IN and JOIN are not the same operator (Filtering by IN never changes the cardinality of the query).

link|flag
vote up 3 vote down

Instead of doing it that way use the join method. It's somewhat difficult to understand without using the query operators, but once you get it, you've got it.

var foo = 
model.entitySet.Join(  //Start the join
values, //Join to the list of strings
e => e.Name, // on entity.Name
value => value, //equal to the string
(ModelItem ent, String str) => ent);//select the entity

Here it is using the query operators

var foo = from e in model.entitySet
join val in values on
e.Name equals val
select e;
link|flag
Thanks Mike, you're a champ. – Ty Sep 18 '08 at 0:00
Thanks for the complement! – Mike Brown Sep 18 '08 at 2:22
Ok, I finally got around to testing this. Unfortunately it doesn't work for what I'm doing but I did find the answer here: forums.microsoft.com/MSDN/… Thanks for the help though, ur still a champ! – Ty Sep 18 '08 at 11:05
Well that's a serious effin' bug! Sorry to hear that it doesn't work. Be careful with that solution because it's prone to SQL injection (using string composition in the middle of your expression) If it were pure Linq to objects, this would work. – Mike Brown Sep 18 '08 at 12:15
Yea I know, it is annoying. I will have to sanitize the inputs before using them inside the ESQL. – Ty Sep 19 '08 at 0:01
vote up 0 vote down

Yes it does translate to SQL, it generates a standard IN statement like this:

SELECT [t0].[col1] FROM [table] [t0] WHERE [col1] IN ( 'Value 1', 'Value 2')

link|flag
When using LINQ-to-Entities ala the ADO.NET Entity Framework, I get an exception saying the "Contains" couldn't be translated. I know what it should translate to but it's not working. – Ty Sep 17 '08 at 23:02
vote up 0 vote down

Using the where method doesn't alway work

var results = from p in db.Products

             where p.Name == nameTextBox.Text

             select p;
link|flag
Thanks Gabe. I'm aware of the alternate LINQ syntax and it works exactly the same way. My question here is how to do the "where in values" types condition. – Ty Sep 17 '08 at 22:58
vote up 0 vote down

Contains is not supported in EF at this time.

link|flag

Your Answer

Get an OpenID
or

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