Suppose there is such an expression tree
Expression Expression1=c=& gt; (c.I d & gt; 5 & amp; & C.N ame. The Contains (" asdd ") | | (c.I d==1 | | c.I d==2).
Now the expression c.I d & gt; 5, from ame. The Contains (" asdd ") this kind of has been parsed out do not have what problem
The key is how can the circle enclosed in parentheses "()" also parse out, otherwise such a condition, express not to come out of the original meaning
CodePudding user response:
Expression trees are not already structure to you?
For example:
Binary expression OrElse,
On the left: (c.I d & gt; 5 & amp; & C.N ame. The Contains (" asdd "))
On the right is: (c.I d==1 | | c.I d==2)
Can see the effect has been reflected in the expression in brackets,
CodePudding user response: