public BinaryExpression(NodeAttribute property, Operator op, NodeAttribute value) { _leftValue = new PropertyLiteral(property); _operator = op; _rightValue = new Literal(value); }
public BinaryExpression(PropertyType property, Operator op, PropertyType value) { _leftValue = new PropertyLiteral(property); _operator = op; _rightValue = new Literal(value); }