Allows you to dynamically composing expression predicates to be used in WHERE clauses in LINQ and also in EntityFramework.
3
votes
1answer
353 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
1answer
226 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
399 views
Linq PredicateBuilder
public static IQueryable<SearchProfile> FilterData(string Filter, Repository<SearchProfileContext> dc)
{
IQueryable<SearchProfile> data = null;
var predicate = ...
1
vote
1answer
77 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
73 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.
...
1
vote
1answer
556 views
Count entity in Core Data with a specific Value
I have an Entity with some Attribute. I have my tabes already populates(SQLite table)
In one Attribute (i'll call Attribute1) i have a bool value, changing during use of my app.
How can i return the ...
1
vote
1answer
329 views
How do I programmatically translate a LINQ query to readable English text that correctly describes the linq expression?
I am working on a project that uses Albahari's PredicateBuilder library http://www.albahari.com/nutshell/ to create a linq expression dynamically at run time. I would like to find a way to translate ...
0
votes
1answer
293 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
134 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 ...
0
votes
1answer
143 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 && ...
0
votes
1answer
107 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 ...
0
votes
1answer
403 views
PredicateBuilder + Join + VB.NET
I have a db that contains 3 tables
Products Table Suppliers Table Categories Table
Id Id Id
ProductName SupplierName ...
2
votes
0answers
293 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
0answers
90 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
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 ...
1
vote
0answers
208 views
PredicateBuilder/LINQ Encapsulate predicates, DI
I've started to notice that i my predicate building code looks similar. That's a sign to refactor it. Let's look at the code.
var predicate = PredicateBuilder.False<ArticleLikeInfo>();
...
1
vote
0answers
170 views
Linq to Sql, PredicateBuilder and defining general logic
The examples with predicatebuilder show how you can define general logic using predicates. But I'm struggling with the following :
Suppose Product has a foreign key relationship with Category and ...
1
vote
0answers
168 views
LinqToSql PredicateBuilder How to retrieve the last inserted value
I have two tables
Table Products
-ID
-Name
-Description
...
And
Table Price
-ProductID
-Price
-DateAdded
How do I create a Predicate which we will return the list of products whose price is ...
1
vote
0answers
249 views
PredicateBuilder and RIA Domain Service
I'm trying to use the PredicateBuilder for adding a list of values to a query.
I want the return Dataset to include all records where the "pkey" value matches at least one of the strings in the list.
...
0
votes
0answers
91 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
0answers
203 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
0answers
220 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 ...
0
votes
0answers
32 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 = ...
0
votes
0answers
121 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
0answers
215 views
How can I use PredicateBuilder for Linq to XML
I am trying to search an xml file and compare the attribute name from a list of keywords at run time. I used DelegatePredicateBuilder as suggested in this post:
Linq to objects Predicate Builder.
...
