Allows you to dynamically composing expression predicates to be used in WHERE clauses in LINQ and also in EntityFramework.

learn more… | top users | synonyms

26
votes
3answers
4k views

C# PredicateBuilder Entities: The parameter 'f' was not bound in the specified LINQ to Entities query expression

I needed to build a dynamic filter and I wanted to keep using entities. Because of this reason I wanted to use the PredicateBuilder from albahari. I created the following code: var invoerDatums = ...
14
votes
1answer
3k views

Graphical Predicate Builder in Xcode 4 with Core Data

I am using Xcode 4, and I can't find a way to work with the graphical predicate builder. Is it still there? How do I use it? Where is the documentation on this? Thanks
3
votes
1answer
999 views

Can PredicateBuilder generate predicates that span multiple tables?

I would like to dynamically generate predicates that span multiple tables across a Join in a Linq statement. In the following code snippet, I want to use PredicateBuilder or a similar construct to ...
2
votes
3answers
2k views

How to create predicate dynamically

Hi i want to create a list based on the search string using predicate expressions. I have a list of type products contains different names. List<products> list1 = new List<products>(); ...
3
votes
1answer
2k views

Linq PredicateBuilder with conditional AND, OR and NOT filters

We have a project using LINQ to SQL, for which I need to rewrite a couple of search pages to allow the client to select whether they wish to perform an and or an or search. I though about redoing the ...
10
votes
1answer
2k views

(Compound) Predicate Builder in Xcode 4 — Where is it?

First off, this question is closely related to Graphical Predicate Builder in Xcode 4 With Core Data. However, I don't have a high enough rating to comment yet, and since I have no answer to offer, ...
7
votes
2answers
848 views

LINQ to SQL PredicateBuilder

Im using the PredicateBuilder as seen here http://www.albahari.com/nutshell/predicatebuilder.aspx, everything works great, and now i can genrate Dynamic LINQ to SQL expressions, but the thing that i ...
1
vote
3answers
3k views

How do I dynamically construct a predicate method from an expression tree?

Here's the scenario: Silverlight 4.0, DataGrid, PagedCollectionView itemssource. The objective is to apply a Filter to the PCV. The filter needs to be a Predicate<object>(Method) - where Method ...
2
votes
2answers
705 views

Nesting OR using Linq PredicateBuilder

I am using predicate builder to write the following code: IEnumerable<int> ids= new List<int> { 47, 48 }; var predicate = PredicateBuilder.False<Customer>(); predicate = ...
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 ...
1
vote
1answer
1k views

Generated SQL with PredicateBuilder, LINQPad and operator ANY

I previously asked a question about chaining conditions in Linq To Entities. Now I use LinqKit and everything works fine. I want to see the generated SQL and after reading this answer, I use LinqPad. ...
1
vote
4answers
3k views

Using PredicateBuilder with VB.NET

I have recreated the Predicatebuilder class in a seperate C# project and I'm trying to use it in a VB.NET project but I keep getting the following error: Overload resolution failed because no ...
0
votes
1answer
201 views

Dynamic predicate building in EF5

Ok, I have to build a predicate to select an unknown number of columns from a known entity in EF5 AND filter by an unknown number of columns ONE of which will always be a name from a child ...