Tagged Questions
0
votes
1answer
298 views
C# Entity Framework and Predicate Builder - Find the Index of a Matching Row within an IQueryable / Pagination Issue
I have a PredicateBuilder expression which returns an IQueryable like so (contrived example):
var predicate = PredicateBuilder.True<CoolEntity>();
predicate = predicate.And(x => x.id > ...
0
votes
1answer
107 views
MySQL with Predicate Builder not working?
I'm developing a small filtering based on the 3 fields. I'm also using the MySQL Connector in my MVC 3 project.
I've found a nice looking PredicateBuilder ...