All Questions
2 questions
2
votes
1
answer
2k
views
How to combine N amount of expression trees with OR/And operators
Currently I have an expression tree that represents a MONSTOROUS Lambda in the form of Expression<Func<Project, bool>> I did this to replace a repetitive amount of looping with Linq.
Here ...
2
votes
3
answers
2k
views
What is actually happening with IQueryable.Where()?
This is is returning a boolean based on whether or not there are some matching IDs.
from t in getAll
select new Result
{
...
bool DetailsAvailable =
(db.SaveTrackings.Where(...