Suppose you're searching some object with two boolean properties, A and B.
What if you have two linq queries:
IQueryable<ObjectType> query = getIQueryableSomehow()
query.Where(x => x.A);
IQueryable<ObjectType> query2 = getIQueryableSomehow()
query2.Where(x => x.B);
How can I join these queries together so that they are equivalent to this?:
IQueryable<ObjectType> query3 = getIQueryableSomehow()
query3.Where(x => x.A || x.B)
I would like to use query3 = query.Union(query2), but sadly in my Linq provider union is not supported.
I split up the case for x => x.A && x.B by chaining the where clause. This is what I mean:
IQueryable<ObjectType> query = getIQueryableSomehow();
query = query.Where(x => x.A);
query = query.Where(x => x.B);
Is there some similar workaround for the or case?
Thanks,
Isaac
using Predicate Builder