1
vote
1answer
350 views

LINQ: Dynamic predicate builder issue

I'm trying to create a helper class to easily build dynamic LINQ queries. Code is heavily modified version of this excellent CodeProject article: ...
3
votes
1answer
144 views

PredicateBuilder returning zero records

I'm using PredicateBuilder to create a dynamic Where clause to query data from a DataTable. I have a Dictionary that contains my column names and values I need to search for. I'm simply iterating ...
1
vote
2answers
178 views

Comparing against child property in generic/dynamic linq predicate with reflection

I am having to generically build a comparative predicate for an Entity Framework Linq query. I'm using reflection and am able to build a single level Lambda expression without any trouble. However ...
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
679 views

PredicateBuilder cannot convert to IQueryable?

i have a function: private IEnumerable<Promotion> MatchesKeyword(IEnumerable<Promotion> list, String keyword) { ...snip... } which right now performs a LINQ query: private ...
1
vote
1answer
2k views

How to use predicate builder with linq2sql and OR operator

I have two tables (TABLE1, TABLE2 - unique i know) that has a 1-to-many relationship respectively and a foreign key between ID columns of both tables. Using linq2sql I am trying to select all TABLE1 ...