I have a MemberExpression that contains the following: mail => mail.SomeProperty.

I want to generate a new member expression to access one level deeper in the hierarchy and have some result like the following: mail => mail.SomeProperty.OtherProperty.

How to do this?

link|improve this question

78% accept rate
Technically what you have there isn't a MemberExpression but a LambdaExpression. Or more precisely, Expression<Func<MailType, SomePropertyType>> (whatever the types are). – Jeff Mercado Mar 30 '11 at 22:05
feedback

1 Answer

up vote 4 down vote accepted

I believe you can use Expression.Property to construct a new MemberExpression that wraps the existing expression with an additional property reference. It takes an Expression for the first argument, which should be the original MemberExpression.

link|improve this answer
I achieved this by using Dynamic Expressions. But actually you can use a Call function on the original expression. – Diego AC Apr 24 '11 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.