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
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
875 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 ...
6
votes
1answer
466 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 ...
6
votes
1answer
187 views

Need help in using PredicateBuilder

I need to know about using PredicateBuilder. On almost every example of how to use it, they show the code as follows: var predicate = PredicateBuilder.True<employee>(); if ...
5
votes
4answers
441 views

C# Predicate Builder with “NOT IN” functionality

With PredicateBuilder how do I get functionality similar to the SQL IN or NOT IN query? For example I have a list of IDs and I want to select all of the People whose IDs either Match or do not match ...
4
votes
1answer
2k views

How does PredicateBuilder work

C# in a Nutshell has a free class called PredicateBuilder which constructs LINQ predicates piece by piece available here. Here's an extract of the method which adds a new expression to the predicate. ...
3
votes
1answer
153 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 ...
3
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
2answers
240 views

Trouble with using predicatebuilder in a foreach loop

I'm having trouble building predicates in a foreach loop. The variable that contains the value the enumerator is currently on is something I need to put in the predicate. So, IQueryable query = ...
3
votes
1answer
1k 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 ...
3
votes
1answer
3k 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 ...
3
votes
1answer
187 views

Predicate Expression Function for repeated comparisons

I have a predicate handler that tests almost 200 cases, and each test involves five possible comparisons. I want to streamline this code, but am hitting a wall with how to express this syntactically. ...
3
votes
1answer
1k views

LINQ PredicateBuilder multiple OR starting with PredicateBuilder.True<>

I have an entity like this: public class Product() { public string Name { get; set; } } I want to implement a search for keywords on the Name property so that they're OR'ed. In other words, a ...
3
votes
1answer
359 views

How to remove duplicates from a predicate object?

Let me explain clearly, I have no of search strings and my list contains different fields. Now i will give no of search strings at a time, then my predicate will search each and every item of the ...
2
votes
2answers
745 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 = ...
2
votes
1answer
92 views

Using PredicateBuilder is there a way to build a predicate off of a variable length list of field names?

I have a list containing a variable number of field names. I would like to do a loop through this list and create a predicate that filters for all records that have a value in the field. foreach (var ...
2
votes
1answer
862 views

PredicateBuilder “And” Method not working

I have downloaded the predicate builder and am having a difficult time getting it to work with the entity framework. Here is my code: v_OrderDetail is the entity var context = new OrdersEntities(); ...
2
votes
2answers
316 views

PredicateBuilder methods clarification

I looked through PredicateBuilder sources and its' implementation makes me curious. Let's look at Or method implementation: public static Expression<Func<T, bool>> Or<T> (this ...
2
votes
2answers
806 views

predicate builder with two tables

A Party can have one or more Contact objects. I want to select all Parties who's streetname contains a specific keyword. If I just want to search in Party I can use the code below. But how do I ...
2
votes
1answer
884 views

Trouble with PredicateBuilder

Hey I'm having trouble using PredicateBuilder to dynamically add "Or Where" clauses to a LINQ statement. I'll explain what I'm trying to accomplished first. I have an inverted index that stores ...
2
votes
1answer
121 views

Searching if all properties exist in a list of entities using Linq

I have the following entities: [Table("Entities")] public abstract class Entity { public int EntityID { get; set; } public string Description { get; set; } public virtual ICollection<Tag> ...
2
votes
1answer
531 views

How to create linq predicate with multiple nested “ands” and “ors”

I am trying to dynamically create a linq expression at runtime using PredicateBuilder from http://www.albahari.com/nutshell/predicatebuilder.aspx. I currently have a method that takes a list of ...
2
votes
1answer
716 views

LinqKit PredicateBuilder with EF 4 CPT 5 table relationships?

I'm using LinqKit PredicateBuilder (http://www.albahari.com/nutshell/predicatebuilder.aspx) for a method that do searching. This is how the relationships are built (Entity Framework 4 CPT 5 POCO): ...
2
votes
2answers
302 views

SubSonic 3, build dynamic or expression at runtime

I have a situation where I have to dynamically build a linq query based on user selections. If I had to dynamically generate sql I could do it this way: var sb = new StringBuilder(); ...
2
votes
0answers
311 views

How to simplify composed predicates in LINQ to WCF Data Services?

I am using PredicateBuilder and Colin Meek's equivalent to compose predicates in an WCF Data Services friendly (i.e. no invocation expressions etc.) way. These work for some queries but fail with ...
2
votes
1answer
237 views

PredicateBuilder reusable DateTime predicate setter

I'm using PredicateBuilder to generate dynamic search clauses. In the sample code below, is there a way that I can modify SetDateTimePredicate so it can be used for any DateTime property on SomeType? ...
2
votes
1answer
414 views

Linq PredicateBuilder

public static IQueryable<SearchProfile> FilterData(string Filter, Repository<SearchProfileContext> dc) { IQueryable<SearchProfile> data = null; var predicate = ...
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 ...
1
vote
2answers
192 views

how do you split up or join a linq query on an “or” (without using Union)?

Suppose you're searching some object with two boolean properties, A and B. What if you have two linq queries: IQueryable<ObjectType> query = getIQueryableSomehow() query.Where(x => x.A); ...
1
vote
1answer
700 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
64 views

Using a Dictionary with PredicateBuilder?

I have a Dictionary<string,object> of search terms and values. In this case the term is the key. An example is: var args = new Dictionary<string,object>() {{"name","joe"}, ...
1
vote
1answer
214 views

Linq PredicateBuilder, grouping and operator precedence

Here is an example of the problem: var source = new LambdasTestEntity[] { new LambdasTestEntity {Id = 1}, new LambdasTestEntity {Id = 2}, new LambdasTestEntity ...
1
vote
1answer
469 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 ...
1
vote
1answer
69 views

How to add multiple And and Or in where clause using Ideablade Predicate Description

How can we add multiple Or and And Operations in where clause in Predicate Description of ideablade. ex. List < PredicateDescription > pdList = new List< PredicateDescription >(); ...
1
vote
1answer
183 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 ...
1
vote
2answers
194 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 ...
1
vote
1answer
251 views

Entity Framework Using Predicates Issue

I am using predicates to refine search options and am getting two different results when i run what looks to be the same query. This one is correct and returns the expected results:(hard coded ...
1
vote
1answer
1k views

PredicateBuilder, VB.net and Where()

I am building a predicate in VB.net using the PredicateBuilder class from the LinqKit library. My datasource is a manually constructed datatable. All the examples I've found show folks creating the ...
1
vote
2answers
1k views

Question with PredicateBuilder multiple AND OR

I've a question about the PredicateBuilder and I really hope you can give me some advice on how to solve this. I'll try to explain this. I have the case where people can search for products based on ...
1
vote
1answer
983 views

How to use PredicateBuilder with nested OR conditionals in Linq

I've been very happily using PredicateBuilder but until now have only used it for queries with only either concatenated AND statements or OR statements. Now for the first time I need a pair of OR ...
1
vote
3answers
985 views

PredicateBuilder and nested predicates

I'm trying to use the Predicate from Albahari to create a TSQL statement like: select * from channel where channel.VendorID IN (@vendorIDs) AND channel.FranchiseID IN (@franchiseIDs) or a predicate ...
1
vote
2answers
271 views

Build query for IQueryable (EF4) from multiple parameters

I'm trying to build a single "Or" predicate from a list of predicates in the form List<Expression<Func<T, bool>>> public static IQueryable<T> Search<T>(this ...
1
vote
1answer
367 views

Entity Framework using Predicates

I am in the process of building out a search that requires the use of predicates. However, whenever i run the below query i continue to get only the results of the last predicate. The results from ...
1
vote
2answers
350 views

using .Equals() failing in Predicatebuilder

Hi I am using Predicate builder to build up my where clause. I noticed that it was doing a case sensitive comparison against the entity datasource. Some quick googling implies this is a feature of ...
1
vote
3answers
315 views

Shorter Way To Write Expression Trees with Predicate Builder

Is there an easier way to write the expression trees with Predicate Builder. It just seems like a lot of code that can be condensed. Expression<Func<EventGymCourt, object>> gymCourt = q ...
1
vote
2answers
533 views

dynamically append multiple linq expressions at run-time

I have two similar methods that take a criteria object (dumb object with a list of properties), call a "CreateExpression" method on that criteria object, and then use the returned expression to filter ...
1
vote
2answers
1k views

C# Predicate Builder not working

I am trying to use predicate builder in the following code: public ListResults<DBAccountDetail> GetAccountDetail(string[] salesForceKey) { try { using (var c = ...
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 ...

1 2 3