Allows you to dynamically composing expression predicates to be used in WHERE clauses in LINQ and also in EntityFramework.
1
vote
2answers
250 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
3answers
967 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 ...
7
votes
2answers
853 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 ...
1
vote
4answers
3k 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
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
825 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 ...