Is there a method in Linq where you can use to build SQL strings like "...where (a=1) OR (a=2)"?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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.
Or using a PredicateBuilder
|
|||||
|
|
You can use the standard .NET boolean operators in your single where clause:
|
||||
|
|
|
You use the all the same operators as in normal C# ===> || for "or" && for "and" etc.
|
|||
|
|
|
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) |
|||
|
|
|
in your
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. |
|||
|
|

||and want something dynamic, likea=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