Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
1k 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
7
votes
2answers
2k 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 = ...
7
votes
2answers
487 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 ...
5
votes
3answers
123 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 ...
5
votes
1answer
613 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, ...
3
votes
2answers
60 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
183 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 ...
3
votes
1answer
383 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
829 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 ...
2
votes
1answer
75 views

Linq PredicateBuilder

public static IQueryable<SearchProfile> FilterData(string Filter, Repository<SearchProfileContext> dc) { IQueryable<SearchProfile> data = null; var predicate = ...
2
votes
1answer
151 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
3answers
315 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>(); ...
2
votes
2answers
202 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
302 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
365 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
190 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
2answers
173 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 ...
1
vote
0answers
21 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
2answers
87 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
0answers
68 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
88 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
2answers
68 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
2answers
171 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
1answer
318 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
1answer
93 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 ...
1
vote
1answer
260 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(); ...
1
vote
3answers
2k 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
vote
0answers
186 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. ...
1
vote
1answer
177 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
554 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
1answer
1k 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
2answers
135 views

Linqbuilder Query with an OrderBy

I have a 1 : M relationship. I built a dynamic query based on input from users to return the listing of parents entities along with their children (using predicate builder: (done successfully new ...
1
vote
2answers
586 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
4answers
2k 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
0answers
7 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 ...
0
votes
0answers
18 views

How to query for keywords against a Table<T> within a DataContext<T> object?

Summary I have to build a search engine-like feature within the Web system that we've written. This search engine has to take into account 'keywords', 'city name', 'company name', 'touristic ...
0
votes
0answers
73 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
1answer
23 views

LinqToSql generates an incorrect query to the database

I have a problem with LinqToSql and PredicateBuilder I have the following piece of code Dim vQuery As IQueryable(Of Table1) = pContext.Table1 Dim predicate As Expression(Of System.Func(Of Table1, ...
0
votes
2answers
112 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 ...
0
votes
2answers
90 views

Problem with slow query using predicate builder

This question takes no time at all to execute, but if I uncomment the last line it takes 5 seconds. How could this affect the query that much? It's almost the exact same query. return ...
0
votes
0answers
51 views

EF4 Many to Many Filter (Products - ProductTags - Tags)

Following Model - Many to Many in EF4: Products ProductId ProductName Tags TagId TagName ProductTags ProductId TagId I am trying with the PredicateBuilder to obtain the following scenario: Search ...
0
votes
1answer
72 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"); ...
0
votes
1answer
93 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 ...
0
votes
2answers
129 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
2answers
108 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 ...
0
votes
2answers
247 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 ...
0
votes
1answer
340 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 ...
0
votes
2answers
383 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 = ...
0
votes
0answers
475 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 ...
0
votes
2answers
308 views

LINQ to SQL - PredicateBuilder

Quick question on how to get even more out of PredicateBuilder. It works as per below: IQueryable<Product> SearchProducts (params string[] keywords) { var predicate = ...

1 2