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

learn more… | top users | synonyms

0
votes
1answer
106 views

how to do a contains on an array of strings?

I am using a predicate builder class and I need to invoke the contains method on an array of strings so in the code below instead of radio I would be passing in an array of strings: wherePredicate = ...
0
votes
1answer
27 views

Combine And/Or with PredicateBuilder?

I have a list of Ids and I only want to do an AND on the first one and and OR on the subsequent ones. In the past, I have kept a counter variable and when the counter is 1, I do the And, but after ...
1
vote
0answers
32 views

Difference between PredicateBuilder<True> and PredicateBuilder<False>?

I have the code: var predicate = PredicateBuilder.True<Value>(); predicate = predicate.And(x => x.value1 == "1"); predicate = predicate.And(x => x.value2 == "2"); var vals = ...
1
vote
1answer
66 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
84 views

In C# is there an elegant way to apply variance to a lambda expression?

My application facilitates multi-criteria search using Predicate Builder. Lets say one of these criteria allows a user to specify how many bathrooms they want in a house. I can use Predicate Builder ...
1
vote
1answer
83 views

Predicatebuilder group and or queries with inner outer

I've got a pretty straightforward predicate builder query that works well. We have a list of keywords to search on, and we loop through those keywords to see if any of our object properties match up. ...
0
votes
1answer
412 views

Dynamic Linq query on List <T> using Predicate Builder

I'm using C# 2010 .NET 4.0 and I have a List<T> collection called returns that I need to build a dynamic LINQ query on. I'm utilizing the Predicate Builder referenced here. This works fine if ...
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 >(); ...
0
votes
1answer
47 views

can someone further explain this C# code

I am using the PredicateBuilder class from http://www.albahari.com/nutshell/predicatebuilder.aspx public static Expression<Func<T, bool>> Or<T> (this Expression<Func<T, ...
1
vote
1answer
188 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 ...
2
votes
1answer
122 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> ...
0
votes
0answers
95 views

WCF Service - Complex Response Objects with Client Filtering

I'm implementing a WCF Service exposing complex objects. e.g. GetFootballTeams request returns: Team Name Nickname Founded Reputation Manager Name Nickname Reputation Players[] ...
0
votes
1answer
249 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 ...
1
vote
1answer
412 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: ...
2
votes
1answer
93 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 ...
1
vote
0answers
100 views

PredicateBuilder and multilevel nested entitysets

I'm trying to wrap my head around dynamic nested predicate expressions. It's not going too well. Basically I need to be able to create dynamic queries on a fixed set of properties but on a dynamic ...
1
vote
1answer
219 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 ...
0
votes
0answers
259 views

Dynamic LINQ using linqkit

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

Linq partial match in list?

I have a list of partial strings that I need to match in a table. I'm using PredicateBuilder. var predicate = PredicateBuilder.False<Name>(); List<string> names = new ...
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 ...
0
votes
1answer
238 views

Entity Framework Bug: Exception with PredicateBuilder and comparing nulls

I was able to get my method (below) to run in LinqPad, but when switching to my actual code (using Entity Framework), I get this error: "Unable to cast the type 'System.Nullable`1' to type ...
1
vote
2answers
185 views

linq to entities and store expression

I work on project that use some dynamic linq query to an entities. i have huge amount of case and to avoid code duplication i refactoring to a method. But using method which isn't in store expression ...
0
votes
2answers
239 views

Zend Framework 2 PDO “not like” operation

I need to make a "not like" operation in a where. I know that i can do this: $predicate->like($a,$b); But i can't find a way to perform a "not like" and other negated like "not in". Is there any ...
0
votes
1answer
326 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
148 views

Building dynamic lambda predicate with short date

I have the following code that helps me build a lambda expression via reflection. However when I try to compare versus a Date it converts my value to a full DateTime stamp. How can I get it to build ...
1
vote
2answers
276 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 ...
6
votes
1answer
189 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 ...
0
votes
0answers
238 views

Using PredicateBuilder in Entity for Optional Filters

I am using EF4 with the following sample database: Departments DepartmentID (uniqueidentifier, PK) Name (nvarchar(50)) ManagerID (uniqueidentifier, FK to Employees table) Employees EmployeeID ...
1
vote
2answers
195 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
0answers
279 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 ...
0
votes
2answers
832 views

Optimize Linq query with PredicateBuilder with N-N join

I'm using Linq to query MS CRM 2011 Web Services. I've got a query that results in very poor SQL, it fetches too much intermediary data and its performance is horrible!! I'm new to it, so it may very ...
0
votes
0answers
34 views

PredicateBuilder with MAX

I would like to conver following SQL into PredicateBuilder Expression. SELECT t1.MEMBER_CODE FROM ASCLEPIOS.MEMBER_RENEWAL_YEAR_HISTORY t1 WHERE (t1.ANNIVERSARY_DAY = 1) AND (t1.ANNIVERSARY_MONTH = ...
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. ...
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. ...
1
vote
1answer
144 views

Combined Lambda dynamically created

I want to build lambda expression : Expression<Func<MyObject, bool>> predicate = PredicateBuilder.False<MyObject>(); var param = Expression.Parameter(typeof(MyObject), "f"); if ...
0
votes
1answer
140 views

PredicateBuilder is still true even after adding explicit false statement

I have the following statement. var search = PredicateBuilder.True<SomeType>(); search.And(f => false); // Still the "search" variable value is: {f => true}. At first, I was trying an ...
2
votes
0answers
312 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 ...
1
vote
1answer
92 views

Making a self-contained boolean Expression with PredicateBuilder

I'm trying to figure out how to use PredicateBuilder to determine if a specific set of records exists all within an Expression. So given an OrderId and a list of ProductIds as a specification, I want ...
0
votes
1answer
391 views

Linq PredicateBuilder multi criteria

List<Product> Prs = data.Products .Where(x=> x.ProductColors .Where(y=> y.Color=="blue") .Select(z=> ...
0
votes
1answer
145 views

PredicateBuilder where clause issue

I am using PredicateBuilder to generate where clause var locationFilter = PredicateBuilder.True<dbCompanyLocation>(); locationFilter = locationFilter.And(s => s.IsPrimary == true && ...
6
votes
1answer
467 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
126 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 ...
0
votes
1answer
314 views

Predicate Builder in MVC 3

I have been messing with Predicate Builder for two days now and although every website says it is super easy to implement for some reason(most likely my fault) I cannot get it to work. I decided to ...
2
votes
1answer
239 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? ...
1
vote
2answers
374 views

RavenDB and PredicateBuilder

Is it possible to use the PredicateBuilder class to build a WHERE clause that RavenDB can interpret and use? I've tried session.Query() and LuceneQuery, but they each failed: Here is the ...
0
votes
1answer
111 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 ...
1
vote
2answers
807 views

Dynamic query with linq to entities using PredicateBuilder

I'm trying to run a query on a very simple table but I'm not getting to any result. The table contains an action log with the following columns: ID ActionTypeID (create, edit or delete) EntryID ...
0
votes
2answers
680 views

Linq to XML Get parent element attribute value by querying it's children

I'm trying to build a Linq to XML Query but havent found a real solution yet. Here is my XML <Nodes> <Node Text="Map" Value="Map"> <Node Text="12YD" Value="12YD"> ...
1
vote
1answer
255 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
473 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 2 3