I have a MemberExpression that contains the following: mail => mail.SomeProperty .
I want to generate a new member expression to access one level in the hierarchy and get the following result: mail => mail.SomeProperty.OtherProperty .
How to do it?
source share