As an example, why do most LINQ operators accept Expression<Func<TSource>> and it's equivalent Func<TSource>
What's the benefit/reason for using the generic Expression class instead of straight up lamda syntax?
|
|
|
Using The reason for this is that LINQ providers (like LINQ to SQL for example) inspect the query itself to determine the best way to translate the C# expressions into a T-SQL query. Since an expression tree lets you look at the code as data the provider is able to do this. |
|||||||
|
|
In summary, the key differences between the two are following:
It is worth mentioning that |
|||||
|
|
Expression Trees allow you to do things like LINQ to SQL and LINQ to XML by generating the underlying calls from your .NET code. |
|||
|
|
|
An |
|||
|
|