I want to dynamically build my list of conditions. Here is a snippet of my code:
protected Expression<Func<event_info, bool>> _wherePredicate = c => true; public void main() { _wherePredicate = _wherePredicate.And(c => c.createdby == 6); _wherePredicate = _wherePredicate.And(c => c.isdeleted == 0); var query = from ev in dataConnection.event_info where ev.isdeleted == 0 select ev; Results = query.Where(_wherePredicate).ToList(); }
In addition, this does not work because linq-to-entity does not support the Invoke method.
What a good way I can combine predicates in linq-to-entity?
source share