BinaryExpression
Overview
Location
- Reference: RemObjects.DataAbstract.Server.dll
- Namespace: RemObjects.DataAbstract.Server.DASQL
- Ancestry: Expression | BinaryExpression
Properties
Left
property Left: Expression read;
Expression Left { get; }
ReadOnly Property Left() As Expression
Operator
property Operator: BinaryOperator read;
BinaryOperator Operator { get; }
ReadOnly Property Operator() As BinaryOperator
Right
property Right: Expression read;
Expression Right { get; }
ReadOnly Property Right() As Expression
Instance Methods
constructor
constructor(parser: Tokenizer; operator: BinaryOperator; left: Expression; right: Expression)
BinaryExpression(Tokenizer parser, BinaryOperator operator, Expression left, Expression right)
Sub New(parser As Tokenizer, operator As BinaryOperator, left As Expression, right As Expression)
Parameters:
- parser:
- operator:
- left:
- right:
Reconstruct
method Reconstruct(builder: SqlQueryBuilder)
void Reconstruct(SqlQueryBuilder builder)
Sub Reconstruct(builder As SqlQueryBuilder)
Parameters:
- builder: