Is there a method in Linq where you can use to build SQL strings like "...where (a=1) OR (a=2)"?
|
feedback
|
|
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
| ||||
|
feedback
|
|
You use the all the same operators as in normal C# ===> || for "or" && for "and" etc.
| |||
|
feedback
|
|
You can use the standard .NET boolean operators in your single where clause:
| ||||
|
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) | |||
|
feedback
|
|
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. | |||
|
feedback
|
||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