1
vote
1answer
150 views

LinqKit PredicateBuilder returns all or non rows

I'm beginning to use LinqKit's PredicateBuilder to create predicate's with OR conditions which is not possible with Linq expressions. The problem I'm facing is if I begin with ...
0
votes
0answers
206 views

Dynamic LINQ using linqkit

Following this example from http://www.albahari.com/nutshell/predicatebuilder.aspx IQueryable<Product> SearchProducts (params string[] keywords) { var predicate = ...
1
vote
0answers
271 views

EF 5.0, PredicateBuilder and LinqKit

Starting using LinqKit from Mr J. Albahari, does anyone know if there might be some caveats or things to be aware of with the release of EF 5.0 ? Would there be any major changes in EF 5.0 and L2E ...
6
votes
1answer
442 views

Unable to refactor using LINQ to Entities and LinqKit / PredicateBuilder

I have been trying to refactor a LINQ expression into a method, and have been running into both the "Internal .NET Framework Data Provider error 1025." and "The parameter 'xyz' was not bound in the ...
0
votes
0answers
122 views

Find Entity with matching multiple records in one/zero to many relationship

LINQ Experts, I need an help. I have two entities, Customer and Phone public class Customer { public long Id { get; set; } public string FirstName { get; set; } public ...
1
vote
1answer
441 views

PredicateBuilder And or Or

In all the examples I've seen for predicate builder it shows a starting expression with PredicateBuilder.True if you are building an "and" expression criteria and PredicateBuilder.False if you are ...