What exactly is Expression<> used for in C#? Are there any scenarios where you would instantiate Expression<>'s yourself as an object? If so, please give an example!
Thank you!
|
7
|
What exactly is Expression<> used for in C#? Are there any scenarios where you would instantiate Expression<>'s yourself as an object? If so, please give an example! Thank you!
|
||
|
|
|
|
A few examples of other places I've used it and seen it used:
|
|||
|
|
In terms of LINQ, there are things you can do to create more versatile LINQ queries at runtime than you can purely in lambdas. I've used
I also used it as part of a maths engine for some work I did with Microsoft - i.e. parse a math expression ("(x + 12) * y = z" etc) into an Another intersting use (illustrated by Jason Bock, here) is in genetic programming; build your candidates as |
||||
|
|
|
Take a look at my before & after code in my answer to another SO question. Summary: |
||
|
|