Tagged Questions
0
votes
0answers
63 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
141 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 ...
2
votes
1answer
97 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> ...
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[]
...
1
vote
1answer
336 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
81 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
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 ...
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 ...
0
votes
1answer
213 views
Entity Framework Bug: Exception with PredicateBuilder and comparing nulls
I was able to get my method (below) to run in LinqPad, but when switching to my actual code (using Entity Framework), I get this error:
"Unable to cast the type 'System.Nullable`1' to type ...
0
votes
0answers
218 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 ...
1
vote
2answers
695 views
Dynamic query with linq to entities using PredicateBuilder
I'm trying to run a query on a very simple table but I'm not getting to any result. The table contains an action log with the following columns:
ID
ActionTypeID (create, edit or delete)
EntryID ...
1
vote
1answer
240 views
Entity Framework Using Predicates Issue
I am using predicates to refine search options and am getting two different results when i run what looks to be the same query.
This one is correct and returns the expected results:(hard coded ...
1
vote
1answer
322 views
Entity Framework using Predicates
I am in the process of building out a search that requires the use of predicates. However, whenever i run the below query i continue to get only the results of the last predicate. The results from ...
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");
...
1
vote
2answers
507 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
1answer
815 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();
...
