vote up 4 vote down star
1

I will keep it really simple,

How do I get expression tree out of lambda??

or from query expression ?

flag

80% accept rate
Great question. Can you expound a little on why you want to generate the expression tree? Is this part of a code generation project? – grenade Aug 21 at 8:45
Its a kind of Code generation project... we have scanner device which support expression tree like model to execute code through driver... some RnD is going to build LINQ provider for device – Prashant Aug 21 at 8:48
Sounds like fun... – grenade Aug 21 at 8:50
very much... :) – Prashant Aug 21 at 8:52

2 Answers

vote up 8 vote down check

You must assign the lambda to a different type:

// Gives you a lambda:
Func<int, int> f = x => x * 2;
// Gives you an expression tree:
Expression<Func<int, int>> g = x => x * 2;

The same goes for method arguments. However, once you've assigned such a lambda expression to a Func<> type, you can't get the expression tree back.

link|flag
vote up 3 vote down

Konrad's reply is exact. You need to assign the lambda expression to Expression<Func<...>> in order for the compiler to generate the expression tree. If you get a lambda as a Func<...>, Action<...> or other delegate type, all you have is a bunch of IL instructions.

If you really need to be able to convert an IL-compiled lambda back into an expression tree, you'd have to decompile it (e.g. do what Lutz Roeder's Reflector tool does). I'd suggest having a look at the Cecil library, which provides advanced IL manipulation support and could save you quite some time.

link|flag
thanks Pierre... link is quite helpfull :) – Prashant Aug 21 at 9:03
So you are really trying to decompile a piece of IL to an expression tree!? I suppose you can't force your users to provide you the lambda as an expression tree, then. Sad. – Pierre Aug 21 at 15:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.