I will keep it really simple,
How do I get expression tree out of lambda??
or from query expression ?
|
I will keep it really simple, How do I get expression tree out of lambda?? or from query expression ? |
|||||||||
|
|
You must assign the lambda to a different type:
The same goes for method arguments. However, once you've assigned such a lambda expression to a |
|||
|
|
|
Konrad's reply is exact. You need to assign the lambda expression to 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. |
|||
|
Just to expand on Konrad's answer, and to correct Pierre, you can still generate an Expression from an IL-compiled lambda, though it's not terribly elegant. Augmenting Konrad's example:
|
|||
|