I am trying to create a lambda expression of type Expression.Lambda<Action<Controller>> dynamically.
For instance: x => x.Index()
var body = ???
Expression<Action<Controller>> action = Expression.Lambda<Action<Controller>>(body);
I have the controller type (Type) and the controller action (MemberInfo).
Controller? So you actually want something likex => ((ConcreteController)x).Index()?