Is there a method in Linq where you can use to build SQL strings like "...where (a=1) OR (a=2)"?

link|improve this question

I assume you know how to use || and want something dynamic, like a=a.where(hour=> hour<20); if(weekend) a=a.where(hour=> hour>6);. You may want to state that more clearly... – Kobi Jan 20 '10 at 13:26
feedback

6 Answers

up vote 40 down vote accepted

You can certainly do it within a Where clause (extension method). If you need to build a complex query dynamically, though, you can use a PredicateBuilder.

 var query = collection.Where( c => c.A == 1 || c.B == 2 );

Or using a PredicateBuilder

 var predicate = PredicateBuilder.False<Foo>();
 predicate = predicate.Or( f => f.A == 1 );
 if (allowB)
 {
    predicate = predicate.Or( f => f.B == 1 );
 }

 var query = collection.Where( predicate );
link|improve this answer
Nice use of the predicates! +1 :) – Alastair Pitts Jan 20 '10 at 13:47
feedback

You use the all the same operators as in normal C# ===> || for "or" && for "and" etc.

var something = from s in mycollection
                where s.something == 32 || 
                      s.somethingelse == 45 
                select s
link|improve this answer
I prefer this method, it looks more natural – nXqd Dec 11 '11 at 20:24
feedback

You can use the standard .NET boolean operators in your single where clause:

MyDataSource.Where(data => data.a == 'a' || data.a == 'b')
link|improve this answer
feedback

One solution might be Dynamic Linq:

(http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx)

link|improve this answer
feedback
var query = ObjectTypes.Where(s => s.a == 1 || s.a == 2)
link|improve this answer
feedback

in your .Where() call use the standard Boolean 'Or' operator, ||.

var query = items.Where(item => (item == 1 || item == 2));

All the Where call does is a Boolean comparison on anything you want, so you can fill it with as much conditional logic as you wish.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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