示例#1
0
 public BinaryExpression(NodeAttribute property, Operator op, NodeAttribute value)
 {
     _leftValue  = new PropertyLiteral(property);
     _operator   = op;
     _rightValue = new Literal(value);
 }
示例#2
0
 public BinaryExpression(PropertyType property, Operator op, PropertyType value)
 {
     _leftValue  = new PropertyLiteral(property);
     _operator   = op;
     _rightValue = new Literal(value);
 }