1
vote
1answer
43 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"}, ...
0
votes
1answer
264 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 ...
2
votes
1answer
103 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> ...
1
vote
1answer
345 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
83 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
91 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
178 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
204 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
67 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
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
173 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 ...
1
vote
2answers
245 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
173 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 ...
1
vote
2answers
176 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 ...
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
142 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 ...
1
vote
1answer
91 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
358 views

Linq PredicateBuilder multi criteria

List<Product> Prs = data.Products .Where(x=> x.ProductColors .Where(y=> y.Color=="blue") .Select(z=> ...
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
1answer
294 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 ...
0
votes
2answers
603 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"> ...
2
votes
2answers
709 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 = ...
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 ...
1
vote
1answer
677 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
0answers
209 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>(); ...
2
votes
1answer
400 views

Linq PredicateBuilder

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

Why am I getting this Linq to Nhibernate exception when I add the same expression to the query twice?

I have a problem. I'm getting an "An item with the same key has already been added." exception when I try to enumerate over the query results. It happens when I try to include an expression from the ...
3
votes
2answers
235 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 = ...
1
vote
2answers
186 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); ...
0
votes
1answer
282 views

LINQ and OR Criteria

how can I programmatically create an EF query (extension methods with lamda). I understand the and criteria. Here is the pseudo-code: var query = repository.Where(x => x.Name == "aName"); ...
2
votes
1answer
505 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 ...
1
vote
2answers
513 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 ...
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
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 ...
0
votes
2answers
416 views

Linq PredicateBuilder not returning results

I'm still ramping up on Linq, but hopefully someone can help me determine why I'm not getting any results from the following method that uses PredicateBuilder (gOrderCount always == 0), any help ...
0
votes
3answers
344 views

Creating ContainsAny and ContainsAll extensions

I'm trying to create a ContainsAny and ContainsAll extension so I can basically do the following string[] words = keywords.split(' '); from c in comments where c.Text.ContainsAny(words) select c ...
2
votes
1answer
858 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 ...
1
vote
1answer
129 views

Design Patterns or good ideas for organizing a massive library of predicates

I have written/am writing a large number of predicates for testing the state of a single complex entity. These predicates are partially LINQ queries (that I assume are turned into SQL) and partially ...
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 ...
2
votes
1answer
699 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): ...
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 ...
0
votes
0answers
863 views

LINQ PredicateBuilder with VB.NET [closed]

Can some one check the code below ? When I am trying to use predicate inside where as here Dim result = context.Users.Where(pred) its not compiling.It shows an error. Public Shared Function ...
2
votes
2answers
299 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(); ...
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 ...
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 ...
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 ...
0
votes
3answers
1k views

How do I trace a linq query when using PredicateBuilder/AsExpandable?

I am using PredicateBuilder, which means that I am using the AsExpandable extension method. The problem is that I can no longer Trace my SQL queries as the following error is thrown when I try to cast ...
0
votes
1answer
823 views

Querying two different entity types using PredicateBuilder

I am desperately trying to use LinqKits PredicateBuilder to allow the user to enter a search term into a text box and return records from two database tables/entitysets but I'm struggling to get ...