Hello,
is there some way to make a clause added to an IQueryable with "Where" extension method append to any preexisiting clauses using "OR" instead of "AND"?
iquery.Where(p=>p.Sky=="Blue");
iquery.Where(p=>p.Sky=="Orange");
this will generate WHERE SKY = "BLUE" AND SKY="Orange" but I want it to be WHERE SKY="BLUE" OR SKY="ORANGE". Possible?