I am trying to concatenate multiple LINQ requests returns (all the returns are IQueryable).
My problem is that I need to start with an Empty IQueryable variable, but the ".Concat" method doesn't work with a variable that is "Nothing".
I was wondering if you had a way of doing this?
PS: You can use multiple "Where" requests as "AND" but not as "OR" (Seq.Where(Seq.Where())). I am trying to do the latter by concatenating multiple requests. Also, if I do an impossible request (A request returning no match), it works, but it is clearly not a good idea.
Thank you anyway. Have a nice day.