I want to convert a lambda expression that refers to a property or sub-property of an object, for example. x => x.Address.Cityto a string Address.City. Is there an existing structure method (MVC, EF, ...?) That does this, or do I need to roll my own? If the latter, is any code out there already doing this?
source
share