LINQKit is a free set of LINQ extensions, aimed primarily at LINQ to SQL. With LINQKit, developers can can: Plug expressions into EntitySets, use expression variables in subqueries, combine expressions (have one expression call another), dynamically build query predicates, and leverage AsExpandable ...
0
votes
1answer
69 views
Obscure “Unsupported overload used for query operator 'Where'.”
I'm using LinqPad and LinqKit to try to learn more about linq to construct complex queries, but I seem to be stuck on simple queries. I haven't found a solution to the error in the question ...
4
votes
3answers
116 views
Building a custom predicate to act as a filter using a foreach loop
I need to filter a list of documents by passing them to a custom filter that I'm struggling to build dynamically using a foreach loop :
var mainPredicate = PredicateBuilder.True<Document>();
...
2
votes
1answer
76 views
Nesting PredicateBuilder predicates : 'The parameter 'f' was not bound in the specified LINQ to Entities query expression'
I am building predicates using LinqKit's PrediateBuilder class to dynamically setup filters and I want to combine a nested one to another.
I have read this ...
0
votes
2answers
52 views
LinqKit versus 'Method cannot be translated into a store expression' exception
I am using LinqKit and I want to write a predicate in which the code has to call a plain boolean method, like this :
var predicate = PredicateBuilder.False<MyEntity>();
var predicate = ...
0
votes
0answers
54 views
linqkit and left joins => exception
I use EF 6 and linqkit and want to create query with left join and dynamic where conditions, something like
select * from LocalizedResources as standart
LEFT OUTER JOIN LocalizedResources AS ...
1
vote
1answer
154 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 ...
0
votes
1answer
118 views
issue using Linq Any clause in Predicatebuilder
I am having an issue with the LinqKit predicatebuilder. I have used it in the past for simple queries and it has worked fine but I am now trying to use it with an Any clause in the statement and it ...
0
votes
0answers
209 views
Dynamic LINQ using linqkit
Following this example from http://www.albahari.com/nutshell/predicatebuilder.aspx
IQueryable<Product> SearchProducts (params string[] keywords)
{
var predicate = ...
2
votes
1answer
151 views
LINQ Entities build Query at Runtime 'The parameter is not in scope.' LinqKit
I'm using LinqKit (http://www.albahari.com/nutshell/linqkit.aspx)
Is there a way to have the following code work without having to define a concrete class?
Trying to build a strongly typed 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
217 views
error when using linqkit's predicate with an expression method
A little background:
I'm using a Linq provider (MsCrm2011 Linq provider, but doesn't really matter) that doesn't support certain operations.
Specifically, it doesn't support Contains() inside an ...
6
votes
1answer
446 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
122 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 ...
1
vote
0answers
282 views
LinqKit and Filter a subquery
I have a One To many relation (EF) and i want to write a query that filters the One relation AND filters the Many Relation.
For instance: Company has Many Employees
Write a query that filters on ...
1
vote
1answer
442 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
713 views
IQueryable<T> with EntityObject using Generics & Interfaces (Possible?)
I have a search repository for EntityFramework 4.0 using LinqKit with the following search function:
public IQueryable<T> Search<T>(Expression<Func<T, bool>> predicate)
...
1
vote
1answer
558 views
How to use an Expression<Func<Model, bool>> in a Linq to EF where condition?
There have already been some questions about this topic (for instance Expression.Invoke in Entity Framework?), however, I could not find an answer for my specific situation.
I would like to define a ...
1
vote
1answer
295 views
Entity Framework: Mixed predicates of mixed entities
Sorry for my awful English.
I'm trying to extend my EF model (with LinqKit).
As long as I work with single entities expressions, I don't have any issue, but if I want to work with mixed expressions, ...
0
votes
1answer
188 views
Using PredicateBuilder to match part of word
I'm using LinqKit predicate Builder to find a record.
I need to match the same as Like %word%
p -> is Customer Class with FirstName, LastName ect....
but when I use:
predicate = predicate.And(p ...
9
votes
1answer
1k views
Is there a particular reason LinqKit's expander can't pick up Expressions from fields?
I'm using LinqKit library which allows combining expressions on the fly.
This is a pure bliss for writing Entity Framewok data acess layer because several expressions can optionally be reused and ...
3
votes
1answer
1k views
LinqKit System.InvalidCastException When Invoking method-provided expression on member property
Given a simple parent/child class structure. I want to use linqkit to apply a child lambda expression on the parent. I also want the Lambda expression to be provided by a utility method.
public ...

