4
votes
3answers
1k views
Lambda Expression Tree Parsing
Thanks in advance guys.
I am trying to use Lambda Expressions in a project to map to a third party query API. So, I'm parsing the Expression tree by hand.
if I pass in a lambda expr …
9
votes
2answers
451 views
Given a type ExpressionType.MemberAccess, how do i get the field value?
I am parsing an Expression Tree. Given a NodeType of ExpressionType.MemberAccess, how do I get the value of that Field?
From C# MSDN docs:
MemberAccess is A node that represents reading f …
5
votes
Given a type ExpressionType.MemberAccess, how do i get the field value?
thank you so so much to Marc Gravell above. I really appreciated his help.
It turns out, in my case. the problem can be solved via:
object value = Expression.Lambda(expBody …
