Tagged Questions

Expression Trees are an abstract representation of code in a tree structure where each node of the tree represents a programming construct (conditional, assignment, method call, etc.)

learn more… | top users | synonyms

36
votes
5answers
12k views

Retrieving Property name from lambda expression

Is there a better way to get the Property name when passed in via a lambda expression? Here is what i currently have. eg. GetSortingInfo<User>(u => u.UserId); It worked by casting it as ...
29
votes
4answers
5k views

Why would you use Expression<Func<T>> rather than Func<T>?

I understand lambdas and the Func and Action delegates. But expressions stump me. In what circumstances would you use an Expression<Func<T>> rather than a plain old Func<T>?
28
votes
2answers
1k views

What does Expression.Quote() do that Expression.Constant() can’t already do?

Note: I am aware of the earlier question “What is the purpose of LINQ's Expression.Quote method?”, but if you read on you will see that it doesn’t answer my question. I understand what the stated ...
24
votes
5answers
7k views

Serializing and Deserializing Expression Trees in C#

Is there a way to Deserialize Expressions in C#, I would like to store Expressions in a Database and load them at run time.
22
votes
2answers
426 views

C# compiler bug? Object initializer syntax used for write-only property in Expression makes csc crash

You may consider this a bug report, however I'm curious if I am terribly wrong here, or if there is an explanation from Eric or someone else at Microsoft. Update This is now posted as a bug on ...
21
votes
7answers
519 views

Is there a C# unit test framework that supports arbitrary expressions rather than a limited set of adhoc methods?

Basically NUnit, xUnit, MbUnit, MsTest and the like have methods similar to the following: Assert.IsGreater(a,b) //or, a little more discoverable Assert.That(a, Is.GreaterThan(b)) However, there ...
21
votes
6answers
2k views

Expression trees for dummies?

I am the dummy in this scenario. I've tried to read on Google what these are but I just don't get it. Can someone give me a simple explanation of what they are and why they're useful? edit: I'm ...
20
votes
3answers
3k views

What is the best resource for learning C# expression trees in depth?

When I first typed this question, I did so in order to find the duplicate questions, feeling sure that someone must have already asked this question. My plan was to follow those dupe links instead of ...
19
votes
2answers
183 views

Are LINQ expression trees proper trees?

Are LINQ expression trees proper trees, as in, graphs (directed or not, wikipedia does not seem too agree) without cycles? What is the root of an expression tree from the following C# expression? ...
18
votes
3answers
189 views

Why are lambda expression arguments ambiguous between Func and Expression<Func>?

Suppose I have a class: class MyClass { public int MyMethod(Func<int, int> f) { return 0; } public int MyMethod(Expression<Func<int, int>> f) { return 1; } } When I try to ...
17
votes
4answers
1k views

Mutating the expression tree of a predicate to target another type

Intro In the application I 'm currently working on, there are two kinds of each business object: the "ActiveRecord" type, and the "DataContract" type. So for example, we have: namespace ActiveRecord ...
15
votes
5answers
330 views

Is it possible to interpret a C# expression tree to emit JavaScript?

For example, if you have an expression like this: Expression<Func<int, int>> fn = x => x * x; Is there anything that will traverse the expression tree and generate this? function(x) ...
15
votes
6answers
2k views

Practical use of expression trees

Expression trees are a nice feature, but what are its practical uses? Can they be used for some sort of code generation or metaprogramming or some such?
15
votes
5answers
13k views

How do I apply OrderBy on an IQueryable using a string column name within a generic extension method?

public static IQueryable<TResult> ApplySortFilter<T, TResult>(this IQueryable<T> query, string columnName) where T ...
14
votes
3answers
652 views

.NET: Accessing non-public members from a dynamic assembly

I'm working on a library that allows users to input arbitrary expressions. My library then compiles those expressions as part of a larger expression into a delegate. Now, for still unknown reasons ...
14
votes
6answers
586 views

Why is Func<> created from Expression<Func<>> slower than Func<> declared directly?

Why is a Func<> created from an Expression<Func<>> via .Compile() considerably slower than just using a Func<> declared directly ? I just changed from using a ...
14
votes
2answers
2k views

Given a type ExpressionType.MemberAccess, how do i get the field value?

I am parsing an Expression Tree. Given a NodeType of ExpressionType.MemberAccess, how do I get the value of that Field? From C# MSDN docs: MemberAccess is A node that represents reading from a ...
13
votes
2answers
239 views

Compiled C# lambda expression performance with imbrication

Considering this class: /// <summary> /// Dummy implementation of a parser for the purpose of the test /// </summary> class Parser { public List<T> ...
13
votes
2answers
378 views

How to Combine two lambdas [closed]

Possible Duplicate: combining two lamba expressions in c# I have two following expressions: Expression<Func<string, bool>> expr1 = s => s.Length == 5; ...
13
votes
4answers
821 views

Performance of compiled-to-delegate Expression

I'm generating an expression tree that maps properties from a source object to a destination object, that is then compiled to a Func<TSource, TDestination, TDestination> and executed. This is ...
13
votes
3answers
2k views

C# 4 “dynamic” in expression trees

I'm trying to figure out how to put all the pieces together, and would appreciate a concrete source code sample for a simple case to start with. Consider the following C# code: Func<int, int, ...
13
votes
1answer
631 views

Is this is an ExpressionTrees bug? #3 [closed]

Expressions class should be more accurate while searching for user-defined operators? sealed class Foo { // just the private static method! private static int op_Implicit() { return 1; } ...
13
votes
1answer
4k views

How do I create this expression tree in C#?

I am trying to create an expression tree that represents the following: myObject.childObjectCollection.Any(i => i.Name == "name"); Shortened for clarity, I have the following: ...
12
votes
2answers
10k views

C#: An item with the same key has already been added, when compiling expression

Ok, here's a tricky one. Hopefully there is an expression guru here who can spot what I am doing wrong here, cause I am just not getting it. I am building up expressions that I use to filter queries. ...
12
votes
2answers
433 views

Getting the object out of a MemberExpression?

So, lets say I have the following expression in C#: Expression<Func<string>> expr = () => foo.Bar; How do I pull out a reference to foo?
12
votes
3answers
1k views

Lambda to Expression tree conversion

I will keep it really simple, How do I get expression tree out of lambda?? or from query expression ?
11
votes
3answers
476 views

EntityFramework query manipulation, db provider wrapping, db expression trees

I'm trying to implement data localization logic for Entity Framework. So that if for example a query selects Title property, behind the scenes it should reference the column Title_enGB or Title_deCH ...
11
votes
6answers
294 views

C# library for human readable pattern matching?

Does anybody know a C# library for matching human readable patterns? Similar to regex, but friendlier? Given a string value, I want to be able to match it against a pattern along the lines of: (this ...
11
votes
6answers
3k views

Access the value of a member expression

If i have a product. var p = new Product { Price = 30 }; and i have the following linq query. var q = repo.Products().Where(x=>x.Price == p.Price).ToList() In an IQueryable provider, I get a ...
11
votes
3answers
255 views

Is this is an ExpressionTrees bug?

using System; using System.Linq.Expressions; class Program { static void Main() { Expression<Func<float, uint>> expr = x => (uint) x; Func<float,uint> converter1 = ...
10
votes
1answer
115 views

Dynamic linq and operator overloads

Consider the code below: var vectorTest = new Vector2(1, 2) + new Vector2(3, 4); // Works var x = Expression.Parameter(typeof(Vector2), "x"); var test = System.Linq.Dynamic ...
10
votes
4answers
376 views

Constructing custom expression trees while using operators in C#

This question is about constructing custom expression trees in .NET using the operators found in C# (or any other language). I provide the question along with some the background information. For ...
10
votes
3answers
801 views

Viewing the IL code generated from a compiled expression

Is it possible to view the IL code generated when you call Compile() on an Expression tree? Consider this very simple example: class Program { public int Value { get; set; } static void ...
9
votes
4answers
324 views

How can I get object instance from ()=>foo.Title expression

I have a simple class with a property class Foo { string Title { get; set; } } I am trying to simplify data binding by calling a function like BindToText(titleTextBox, ()=>foo.Title ); ...
9
votes
9answers
946 views

Whats a good use case for .net 4.0 Expression Trees?

This one was inspired by my language-guru co-worker who can't seem to find a good use for them, and after a few lame attempts of my own, I'd have to agree. Now I know these concepts tend to flow a ...
9
votes
1answer
1k views

Java Expression Trees

Is there an equivalent of .net's Expression Trees that underly LINQ for the JVM? I would like to implement some LINQ like code structures in Scala and I am wondering if I have to roll my own ...
9
votes
5answers
4k views

.NET Expression Trees Tutorial

I've been looking for a good tutorial on Expression trees (C#) for a while, but no luck so far. Most of the stuff I've found on the Web was too high level and very basic. Does anyone know some decent ...
9
votes
1answer
2k views

C#, Linq2Sql: Is it possible to concatenate two queryables into one?

I have one queryable where I have used various Where and WhereBetween statements to narrow the collection down to a certain set. Now I need to add kind of a Where || WhereBetween. In other words, I ...
9
votes
5answers
3k views

Assignment in .NET 3.5 expression trees

Is it possible to encode an assignment into an expression tree?
8
votes
1answer
121 views

Evaluate C# expression inside another expression

I want to use an expression in another one: Expression<Func<double, double>> f = x => x * x * 27 + blah ... expression with x; Expression<Func<double, double>> g = y => ...
8
votes
2answers
348 views

Converting Linq to XSLT

Is there a way to convert LINQ queries into XSLT? the same way LINQ can be converted to SQL? I mean if i have a solid well defined XML(Conforms to an XSD) is there a way to compile the stuff under ...
8
votes
3answers
554 views

Create an Action<T> to “set” a property, when I am provided with the LINQ Expression for the “get”

I'd like to be able to generate a compiled expression to set a property, given the lambda expression that provides the "get" method for a property. Here's what I'm looking for: public ...
8
votes
5answers
737 views

Need guidance towards evaluative boolean logic tree

I can't seem to find a pointer in the right direction, I am not even sure what the terms are that I should be researching but countless hours of googling seem to be spinning me in circles, so ...
8
votes
2answers
270 views

Is this is an ExpressionTrees bug? #2

Looks like ExpressionTrees compiler should be near with the C# spec in many behaviors, but unlike C# there is no support for conversion from decimal to any enum-type: using System; using ...
8
votes
6answers
4k views

C# Linq-to-SQL: Refectoring this Generic GetByID method

I wrote the following method: public T GetByID(int id) { var dbcontext = DB; var table = dbcontext.GetTable<T>(); return table.ToList().SingleOrDefault(e => ...
8
votes
5answers
4k views

How do I set a field value in an C# Expression tree?

Given: FieldInfo field = <some valid string field on type T>; ParameterExpression targetExp = Expression.Parameter(typeof(T), "target"); ParameterExpression valueExp = ...
8
votes
4answers
5k views

Lambda Expression Tree Parsing

Thanks in advance guys. I am trying to use Lambda Expressions in a project to map to a third party query API. So, I'm parsing the Expression tree by hand. if I pass in a lambda expression like: p ...
7
votes
1answer
154 views

Compiling lambdas and invoking delegates on the device in Monotouch

I am currently porting a .NET codebase in MonoTouch and I'm currently working on a method that receives an Expression<T>. I'm trying to compile it, and then dynamically invoke it. Here's what I ...
7
votes
3answers
154 views

recommend a good resource to learn parsing and evaluating expression trees in c#

As the title says, I am looking for a resource (preferably a book) that deals with parsing / evaluation / modifying Expression Trees in C#. I understand expression trees, but I am looking for a ...
7
votes
2answers
173 views

Why is JIT_MethodAccessAllowedBySecurity taking so much time?

I'm working on a C# application that allows users to basically import tables of data, and then enter their own formulas in a mini-language to compute new columns from the underlying data. These ...

1 2 3 4 5 12