Is there anyway to join LINQ where clauses as OR ?
var ints = new [] { 1, 3, 5, 7 }; var query = from i in ints select i; query = query.Where (q => q ==
Are you talking about specifying more than one condition in the lambda?
query = query.Where(q => q == 3 || q == 7);