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>?
|
|
||||
|
|
|
When you want to treat lambda expressions as expression trees and look inside them instead of executing them. For example, LINQ to SQL gets the expression and converts it to the equivalent SQL statement and submits it to server (rather than executing the lambda). Conceptually,
will effectively compile to an IL method that gets nothing and returns 10.
will be converted to a data structure that describes an expression that gets no parameters and returns the value 10: While they both look the same at compile time, what the compiler generates is totally different. |
||||
|
An extremely important consideration in the choice of Expression vs Func is that IQueryable providers like LINQ to Entities can 'digest' what you pass in an Expression, but will ignore what you pass in a Func. I have two blog posts on the subject: More on Expression vs Func with Entity Framework and Falling in Love with LINQ - Part 7: Expressions and Funcs (the last section) |
|||||||
|
|
LINQ is the canonical example (for example, talking to a database), but in truth, any time you care more about expressing what to do, rather than actually doing it. For example, I use this approach in the RPC stack of protobuf-net (to avoid code-generation etc) - so you call a method with:
This deconstructs the expression tree to resolve Another example is when you are building the expression trees manually for the purpose of compiling to a lambda, as done by the generic operators code. |
|||
|
|
|
You would use an expression when you want to treat your function as data and not as code. You can do this if you want to manipulate the code (as data). Most of the time if you don't see a need for expressions then you probably don't need to use one. |
|||
|
|

larger image