Pass expression parameter as argument to another expression
If I understand correctly, you want to reuse an expression tree inside another one, and still allow the compiler to do all the magic of building the expression tree for you. This is actually possible, and I have done it in many occasions. The trick is to wrap your reusable part in a method call, … Read more