I have an expression, passed to a function, that looks something like this:
x=>x.SomeField
I want somehow to get to the name of this field, the "SomeField", to be accessible for me as a string. I realize that it's possible to call myExpression.ToString(), and then parse the string, but I want a more solid, faster approach.