I need to implement an expression for a method like here:
var prop = Expression.Property(someItem, \"Name\"); var value = Expression.Constant(someConstant);
I am not sure, but you can only get an extension method from the static class using reflection. Extension methods are not truly added to the class, therefore can't be retrieved with GetMethod.
GetMethod