Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
229 views

How is a Func<T> implicitly converted to Expression<Func<T>>?

I don't understand what is happening here: Both of these lines compile: Func<object> func = () => new object(); Expression<Func<object>> expression = ()=>new object(); ...
12
votes
2answers
681 views

How do I Emit a System.Linq.Expression?

I've got some code that generates various Func<> delegates using System.Linq.Expressions and Expression.Lambda<Func<>>.Compile() etc. I would like to be able to serialize the ...
11
votes
1answer
751 views

Why are some object properties UnaryExpression and others MemberExpression?

Acting on the answer to my Select a model property using a lambda and not a string property name question, wanting to add properties to a collection as follows: var props = new ...
10
votes
1answer
1k views

What is the purpose of LINQ's Expression.Quote method?

The MSDN documentation states: Expression.Quote Method Creates a UnaryExpression that represents an expression that has a constant value of type Expression. I've been able to build ...
6
votes
7answers
1k views

What is the best way to merge two objects during runtime using C#?

I have two objects and I want to merge them: public class Foo { public string Name { get; set; } } public class Bar { public Guid Id { get; set; } public string Property1 { get; set; } ...
5
votes
1answer
63 views

Linq - Creating Expression<T1> from Expression<T2>

I have a predicate Expression<Func<T1, bool>> I need to use it as a predicate Expression<Func<T2, bool>> using the T1 property of T2 I was trying to think about several ...
5
votes
4answers
195 views

Dynamic Expression using LINQ. How To Find the Kitchens?

I try do implement a user dynamic filter, where used selects some properties, selects some operators and selects also the values. As I didn't find yet an answer to this question, I tried to use LINQ ...
5
votes
1answer
393 views

LINQ member expression getting column name

Hello, I am using LINQ and EF with C# 4.0. I have dragged the basic ELMAH table into EF (built and saved many many times). All is working as one would expect. But have tried to be too ambitious and ...
4
votes
1answer
217 views

How to build a LambdaExpression from an existing LambdaExpression Without Compiling

I want to combine two LambdaExpressions without compiling them. This is what it looks like if I do compile them: public Expression<Func<TContainer,bool>> ...
4
votes
3answers
994 views

Dynamic LINQ - Is There A .NET 4 Version?

I'm looking to use LINQ for some searching routines and wanted to have some dynamic where clauses. So, for example, if a user wants to search by city or search by state, I would have a dynamic LINQ ...
3
votes
1answer
81 views

Serialize an expression with an variable

I wrote some classes to serialize System.Linq.Expressions to DataContracts to be able to send via WCF. It works quite good nice. the problem is when i want to serialize an expression that has a ...
3
votes
3answers
75 views

Extension Method convertion to LINQ Expressions and Common Methods

I have an Extension method that does the following: public static bool Between(this DateTime target, DateTime startDate, DateTime endDate) { return target >= startDate && target <= ...
3
votes
3answers
142 views

Expression tree for String.IndexOf method

How should I construct Expression tree for string.IndexOf("substring", StringComparison.OrdinalIgnoreCase)? I can get it working without the second argument: StringComparison.OrdinalIgnoreCase These ...
3
votes
3answers
114 views

Combine several similar SELECT-expressions into a single expression

How to combine several similar SELECT-expressions into a single expression? private static Expression<Func<Agency, AgencyDTO>> CombineSelectors(params Expression<Func<Agency, ...
3
votes
1answer
76 views

setting private properties of classes

I have some very old code which uses reflection to set properties of objects, e.g something like this: var properties = obj.GetType().GetProperties( BindingFlags.Public | BindingFlags.NonPublic | ...
3
votes
3answers
193 views

How do Linq Expressions determine equality?

I am considering using a Linq Expression as a key in a dictionary. However, I am concerned that I will get strange results, because I don't know how Equality is determined by Linq expressions. ...
3
votes
1answer
154 views

Conversion of Linq expressions

I'm not sure how exactly argument what I'm trying to achieve, therefore - wrote some code: public class Foo{ public Bar Bar{get;set;} } public class Bar{ public string Fizz{get;set;} } public ...
3
votes
1answer
820 views

C# coercion operator?

I got this test: [Fact] public void EverythingIsMappedJustFine(){ new AutoMapperTask().Execute(); Mapper.AssertConfigurationIsValid(); } It throws a bit strange exception: Test ...
3
votes
1answer
834 views

LINQ Expression<Func<T, bool>> equavalent of .Contains()

Has anybody got an idea of how to create a .Contains(string) function using Linq Expressions, or even create a predicate to accomplish this public static Expression<Func<T, bool>> ...
2
votes
3answers
174 views

Can't use ternary operator to assign Linq expression

I just typed the following code: Expression<Func<ContentItem, bool>> expression = fileTypeGroupID.HasValue ? n => n.Document.MimeType.FileTypeGroupID == ...
2
votes
4answers
126 views

Looking for a C# => Linq Expression compiler

I'm looking for the ability to convert entire methods into Expression trees. Writing it out would suck. :) So (trivial example) given the following text: public static int Add(int a, int b) { ...
2
votes
1answer
194 views

Using brackets in dynamic .NET expressions

I have a grid in witch a user can fill-in the "filter" on a collection. The user has to fill-in some columns: AndOr Property Comparator Value say, for a Cities collection it could filter cities ...
2
votes
2answers
91 views

Test LINQ to SQL expression

I am writing an application that works with MS SQL database via LINQ to SQL. I need to perform filtering sometimes, and occasionally my filtering conditions are too complicated to be translated into ...
2
votes
0answers
455 views

Creating a dynamic sort method for linq to entities [closed]

Possible Duplicate: Dynamic LINQ OrderBy I'm using the Entity Framework and would like to create my own dynamic sorting method that will let you enter a string to do your sorting such as ...
2
votes
1answer
130 views

How to optimize LINQ expressions?

On a project built with .NET 3.5, I am using LINQ expressions to dynamically generate code at runtime. The LINQ expressions are compiled using the Compile method and stored for later use as predicates ...
2
votes
1answer
861 views

variable 'x' of type 'Product' referenced from scope, but it is not defined

I have a class named Product in class library project. I am using SubSonic SimpleRepository to persist objects. I have a method as follows in Product class: public static IList<Product> ...
2
votes
2answers
154 views

linq to sql multiple Where() statements not creating a single expression

My understanding is that the following code: IQueryable<Things> things = dataContext.Things.Take(10); if (fromDate > new DateTime(1980, 1, 1)) things = things.Where(a => ...
2
votes
2answers
244 views

Expression<Func<T,bool>> - How to Handle Ambiguous Method Signatures?

I have an interface contract that looks like this: ICollection<FooBar> FindByPredicate(Expression<Func<FooBar,bool>> predicate); ICollection<Foo> ...
2
votes
1answer
330 views

Using Linq expressions as a specification pattern with parent/child query

I'm trying to use the specification pattern implemented as a Linq expression so that Linq providers can parse it to produce efficient database queries. This gives the basic idea. I am having a ...
2
votes
2answers
135 views

Should methods containing LINQ expressions be tested / mocked?

Assuming I have a class with a method that takes a System.Linq.Expressions.Expression as a parameter, how much value is there in unit testing it? public void IList<T> Find(Expression ...
2
votes
2answers
385 views

Does a function call in the Where(…) clause of a Linq to Nhibernate query negatively affect performance?

I use linq to nhibernate and the IQueryable.Where function in an application I'm building. And what mystifies me is how do the Expressions I create and pass to the Where function of a ...
1
vote
1answer
39 views

Lambda expression Func with more than 16 params

I have to write a filtering lambda expression used in LinqToSQL, which requires more than the number of parameters provided by the standard System.Func (in this case the max number is 16). ...
1
vote
1answer
153 views

Fun (?) with Linq Expressions in extension methods

I wrote an HtmlHelper expression I use a lot of the time to put title tags into my dropdown lists like so: public static HtmlString SelectFor<TModel, TProperty, TListItem>( this ...
1
vote
1answer
61 views

How can I convert this linq expression to method form?

How can I convert this linq from f in fake join r in real on f.Year equals r.Year into joinResult from r in joinResult.DefaultIfEmpty() select (r == null ? f : r); in Linq with method form. ...
1
vote
1answer
58 views

Linq - Expression.And to join N elements BinayExpression

I have a list of BinaryExpression and I need to join the elements of this list in a single "object". IList<BinaryExpression> lstBin = new List<BinaryExpression>(); Inside my List I have ...
1
vote
1answer
55 views

How to create NotStartsWith Expression tree

I'm using jqGrid to display some data to users. jqGrid has search functionality that does string compares like Equals, NotEquals, Contains, StartsWith, NotStartsWith, etc. When I use StartsWith I ...
1
vote
2answers
85 views

How to create a collection of Expression<Func<T, TRelated>>?

I have a repository with the following method: IEnumerable<T> FindAll<TRelated>(Specification<T> specification, Expression<Func<T, ...
1
vote
2answers
165 views

Calling (params object[]) with Expression[]

I'm trying to call String.Format from with in a Linq.Expression tree. Here's a quick example: var format = Expression.Constant("({0}) {1}"); var company = Expression.Property(input, ...
1
vote
2answers
52 views

Build a specific LINQ expression based on another LINQ expression and a value

If I've got a LINQ expression of the form: Expression<Func<MyClass, string, bool>> filterExpression = (x, filterVal) => x.DisplayName.Contains(filterVal); Is there any way I can get ...
1
vote
2answers
437 views

How to convert Expression<Func<T, object>> to Expression<Func<object, object>>

Is there way to convert Expression<Func<T, object>> to Expression<Func<object, object>> ?
1
vote
1answer
222 views

Linq Expression Chain Syntax for In Query

I have a query that I cannot seem to replicate in expression method chain syntax. I have two tables "User" and "UserPayment". User and UserPayment have a one to many relation i.e. One User can have ...
1
vote
1answer
425 views

How do I dynamically create an Expression<Func<MyClass, bool>> predicate from Expression<Func<MyClass, string>>?

I trying to append where predicates and my goal is to create the same expression as: Services.Where(s => s.Name == "Modules" && s.Namespace == "Namespace"); I have the following code: ...
1
vote
1answer
85 views

Projections over sub collections - EF4

Lets assume the following model with EF4: class Order { .... public int Id {get;private set;} //ICollection is the root of all evil here public ICollection<OrderDetail> Details ...
1
vote
1answer
235 views

.NET MVC Strongly typed helper - Get value from property?

I'm creating a strongly typed helper (ref: SO question). As 'commented' in the code below, is it possible to somehow get the value from the expressed property and thus bypass the optional ...
1
vote
1answer
260 views

Dynamic property setter with linq expressions?

I want to create a simple function that does the following: Sub SetValue(Of TInstance As Class, TProperty)( ByVal instance As TInstance, ByVal [property] As Expression(Of Func(Of TInstance, ...
1
vote
1answer
206 views

MemberExpression to MemberExpression[]

The objective is to get an array of MemberExpressions from two LambdaExpressions. The first is convertible to a MethodCallExpression that returns the instance of an object ...
1
vote
1answer
177 views

Consolidate or reuse LINQ expression

I have a LINQ expression that gets used as a filer in a LINQ to SQL statement where clause. My problem is that the LINQ to SQL expression has become unwieldy and also the logic it contains has ended ...
1
vote
1answer
74 views

Convert MethodBody to Expression Tree

Is there a way to convert a MethodBody (or other Reflection technique) into a System.Linq.Expressions.Expression tree?
1
vote
1answer
193 views

Linq to Nhibernate - Compare 2 lists

I have 2 lists and I need to know if there are any matches. I've tried using request.Interests.Intersect(x.Post.Tags.Split(' ')).Count() > 0 but I get the error System.NotImplementedException ...
1
vote
1answer
274 views

How do I access a Dictionary Item using Linq Expressions

I want to build a Lambda Expression using Linq Expressions that is able to access an item in a 'property bag' style Dictionary using a String index. I am using .Net 4. static void ...

1 2