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 ==
try this
var ints = new [] { 1, 3, 5, 7 };
var query = ints.select(X=>X).where(X=>X==3||X==7);