I have two queries which return a collection of the same kind of object, after these two queries are done, I want to union them.
var results = from t in All()
where t.Blah.Contains(blahblah)
select t;
var results2 = from t in All()
where t.blah2.contains(blahblah)
select t;
return results.Union(results2);
It is possible that the second query could return no results, and be null.
It seems like if I try and perform a union with the two, if the second argument is null it will throw an ArgumentNullException.
The obvious answer would be to just to perform .ToList() on the second query to see if it contains anything. The problem with this is I am trying to take advantage of deferred execution and dont want to actually perform the query on the database at this stage.
Is there any way around this?
Edit - Solution
var results2 = from t in All()
where t.blah2!=null && t.blah2.Contains(blahblah)
select t;
Basically, the actual query was returning null as I was trying to do a contains on a null list
Thanks for the help!