Tagged Questions
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>();
...
0
votes
1answer
33 views
Linq to Entities Expression Tree - Comparing String Values as Integers
How can I build a SQL Server compatible expression tree that can compare a string as if it were an integer?
My table contains phone numbers (e.g. "01234000000") and I want my dynamically created ...
1
vote
1answer
40 views
How do I call a method from within a linq query that is retrieving from an Entity Framework model
I have the following code
return (_entities.Users.Select(profile => new ProfileUserListItemDto
{
Email = profile.Email,
FirstName = ...
0
votes
1answer
176 views
Generate dynamic select lambda expressions
I am somewhat new to expression trees and I just don't quite understand some things.
What I need to do is send in a list of values and select the columns for an entity from those values. So I would ...
0
votes
2answers
177 views
Unique Column Values Linq To Entities Dynamically (Expression Tree)
I realize there have been a ton of posts related to this and I've researched extensively and can't seem to figure this out. It should be super simple. I simply need to generate a column domain with ...
0
votes
2answers
111 views
Need help creating an expression tree for Where clause
I need to create an expression tree, which I can pass along as predicate argument in Where clause to Linq To Enities query.
public static IQueryable<TSource> Where<TSource>(this ...
0
votes
2answers
192 views
Filter using Expression Trees
I need to query database and filter based on parameters passed into the function. I am passing two date parameters (used as a date range), a name, and a status parameters. All the parameters can ...
1
vote
1answer
140 views
Binding DefaultExpression to property in Linq-to-Entities query
I have a class that helps project entities to POCOs by emitting Linq expressions that can be used with an IQueryable. Here is an expression I'm having some trouble with:
result = ...
1
vote
1answer
119 views
Inline delegate for Linq to Entities
I have a feeling I already know the answer to this question.
I have an expression that common but complex, and I would like to re-use the code in multiple locations. I would like to use a function ...
0
votes
2answers
111 views
How can I select the property for OrderBy/Where at runtime (not with a string parameter)?
Updated example to show more general usage.
I have an entity to allow user-provided localization:
public class ResourceValue
{
public int ResourceValueId { get; set; }
public string ...
0
votes
0answers
132 views
Join string in LINQ 2 Entity
I would like to join string (at SQL server side) in LINQ 2 Entity.
Is it even possible given the fact that LINQ 2 Entity can't translate the Aggregate function?
(btw, I just don't understand why L2S ...
3
votes
2answers
184 views
Linq Expression to execute existing expression on a child property
Here is a simple class
public class Parent
{
public Child Child { get; set; }
}
Here is the method I'm trying to implement
Expression<Func<Parent, long>> ...
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 ...
4
votes
1answer
199 views
Generate dynamic UPDATE command from Expression<Func<T, T>>
I'm trying to generate an UPDATE command based on Expression trees (for a batch update).
Assuming the following UPDATE command:
UPDATE Product
SET ProductTypeId = 123,
ProcessAttempts = ...
0
votes
2answers
481 views
How can I make this query work in LINQ to Entities?
I have to following code:
private static bool DoesColValueExist<T>(IQueryable dataToSearchIn, string colName, string colValue)
{
int noOfClients = 1;
Type type = typeof(T);
if ...
2
votes
1answer
613 views
How to create C# LambdaExpression that returns anonymous type for SelectMany resultSelector
I'm building a dynamic query that can have n of Where method calls and n of SelectMany calls dependent upon user input. For example I may have:
var qZ = entityContext.TableA
...
1
vote
3answers
310 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 ...
4
votes
3answers
568 views
Sharing a where clause between LINQ statements
I have several LINQ-to-Entities queries that hit the same two tables and have the same few conditions. What I'm trying to do is share the where clause between multiple queries. For example, say I have ...
2
votes
1answer
180 views
Can LINQ-To-Entities be expanded?
In general, If I create an extension method that acts on an entity:
public static MyEntity Foo(this MyEntity entity)
{
// do something to the entity
}
One cannot directly use this in a projection ...
9
votes
2answers
1k views
How to obtain ToTraceString for IQueryable.Count
I use ((ObjectQuery)IQueryable).ToTraceString() to obtain and tweak SQL code that is going to be executed by LINQ.
My problem is that unlike most IQueryable methods IQueryable.Count as defined like ...
1
vote
1answer
216 views
Implementing Fluent API kind of method in C# for ef Code-First
I am using EF 4.1 code first, and using fluent API for entity Configuration.
I am using following way to configure my entities. Almost every table key in my db is composite of "ICustomerId + ...
0
votes
3answers
146 views
Combine Generic ICollection<T> Expression with an Any Accepting a Generic Predicate
I'm trying to figure out how to combine the following Expressions:
Expression<Func<TParent, ICollection<TChild>>> childSelector = p => p.Children;
Expression<Func<TChild, ...
1
vote
2answers
410 views
Dynamically construct Select clause of a Linq query
I'm using a LINQ to Entities, and I have a couple of queries for which I want to be able to specify the Select clause at runtime.
I figured I'd have to do it by building an Expression and adding it ...
4
votes
4answers
281 views
How can I compose an expression tree from the union of several expressions?
I'm trying to construct an IQueryable which will be evaluated by my entity model. I want to pass it two groups of lambdas and have it compose everything into a more complex expression tree, which is ...
1
vote
1answer
108 views
Lambda Expressions: How to analyze how a delegate is stored as an Expression?
This code:
var lambda = Products.Where( p => p.name == "chair");
can be written like this code:
var propertyName = "name";
var value = "chair";
var arg = Expression.Parameter(typeof(Product), ...
1
vote
1answer
218 views
Combining 2 LambdaExpressions into 1 LamdaExpression
I am dynamically generating Expression trees to be sent off to LINQ to Entities. I am providing a framework and I allow developers to specify output columns as lambda expressions.
For instance, say ...
1
vote
1answer
117 views
How can I factor out clauses in a parameterized Expression?
Hey all. I'm trying to optimize a Linq to Entities call by statically caching and reusing a compiled query. The query checks the same thing for a variable number of filter arguments, and the only ...
0
votes
2answers
600 views
Custom expression
I found this example code:
public IQueryable<T> Get<T>(ObjectSet<T> obj) where T : class
{
Type type = typeof(T);
var x = type.GetInterface("IMyInterface");
if (x != ...
5
votes
1answer
632 views
Parameterized Linq Expression Help
I want to do a method with a signature like this:
Expression<Func<TSource, bool>> CreatePropertyFilter<TSource>(Expression<Func<TSource, string>> selector, string value, ...
2
votes
1answer
225 views
Linq mapping between models
I have a data-model for Entity Framework in which some entities have a collection of attributes that can be used to add extra information. Some clients would like to map these attributes to 'real' ...
2
votes
1answer
395 views
Expressions: a get-by-ID-selector when I have the Expression to get the ID?
I have a generic base repository class for LINQ-to-Entities that can do things like selecting an entity based on the ID.
In order to subclass it, you need to implement these two:
protected override ...
1
vote
1answer
307 views
Linq: Dynamic Query Contruction: query moves to client-side
I've been following with great interest the converstaion here:
http://stackoverflow.com/questions/3769141/construct-query-with-linq-rather-than-sql-strings
with regards to constructing expression ...
1
vote
2answers
3k views
IQueryable: Creating dynamically an OR filtering
I have a set of search criterias in this form:
member | value | operator
--------+---------+---------
height | 10 | >
height | 2 | <
name | Carl | ==
And ...
1
vote
3answers
3k views
Querying Entity with LINQ using Dyanmic Field Name
I have created a dynamic search screen in ASP.NET MVC. I retrieved the field names from the entity through reflection so that I could allow the user to choose which fields they wanted to search on ...
5
votes
2answers
516 views
How to create an Expression Tree to do something similar to the SQL “Like ” command
I’m working on some expression tree code written by a colleague and am looking into the possibility of adding additional expressions. It currently supports: equals, not-equals, IsNull etc. I need to ...
0
votes
1answer
618 views
Using an existing IQueryable to create a new dynamic IQueryable
I have a query as follows:
var query = from x in context.Employees
where (x.Salary > 0 && x.DeptId == 5) || x.DeptId == 2
order by x.Surname
select x;
The above is the ...
1
vote
1answer
775 views
Linq to EF Expression Tree / Predicate int.Parse workaround
I have a linq Entity called Enquiry, which has a property: string DateSubmitted.
I'm writing an app where I need to return IQueryable for Enquiry that have a DateSubmitted within a particular date ...
1
vote
1answer
482 views
Patterns or techniques for designing a flexible advanced search with Linq Expression Trees
I'm looking to add an "advanced search" capability to my ASP.NET/SQL Server 2005 application. Ideally, I'd like it to be table driven. For example, if my schema changes with the addition of a new ...

