Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 5 down vote accepted

using Predicate Builder

IQueryable<ObjectType> query = getIQueryableSomehow();
var predicate = PredicateBuilder.False<ObjectType>();
predicate = predicate.Or(x => x.A);
predicate = predicate.Or(x => x.B);

var list = query.Where(predicate).ToList();
share|improve this answer
This looks like what I want. I'll try it out and see if it works. – IBC Oct 18 '11 at 0:03
1  
Works great. I'm in your debt Adrian! – IBC Oct 18 '11 at 1:09

If your LINQ provider doesn't support the Union operator, you can always first materialize the query results using ToArray(), and then use the LINQ-to-objects provider to perform the union, which it supports, like so:

IQueryable<ObjectType> query = getIQueryableSomehow() 
query.Where(x => x.A); 

IQueryable<ObjectType> query2 = getIQueryableSomehow() 
query2.Where(x => x.B); 

IQueryable<ObjectType> query3 = query.ToArray().AsQueryable<ObjectType>().Union(query2);

This will work well as long as your results being unioned are not too large.

share|improve this answer
I prefer not to do this, I want to retrieve as few records from the database as possible. I know that will work though! Thanks. – IBC Oct 17 '11 at 23:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.