7 references to BinaryNode
System.Data (7)
fx\src\data\System\Data\Filter\BinaryNode.cs (1)
1215: base (table, op, left, right) {
fx\src\data\System\Data\Filter\ExpressionParser.cs (1)
690expr = new BinaryNode(_table, opInfo.op, nodeLeft, nodeRight);
fx\src\data\System\Data\Select.cs (5)
117this.linearExpression = (this.linearExpression == null ? e : new BinaryNode(table, Operators.And, e, this.linearExpression)); 124canColumn.expr = (canColumn.expr == null ? expr : new BinaryNode(table, Operators.And, expr, canColumn.expr)); 144canColumn.expr = (canColumn.expr == null ? expr : new BinaryNode(table, Operators.And, expr, canColumn.expr)); 153this.linearExpression = (this.linearExpression == null ? expr : new BinaryNode(table, Operators.And, expr, this.linearExpression)); 412this.linearExpression = (this.linearExpression == null ? candidateColumns[i].expr : new BinaryNode(table, Operators.And, candidateColumns[i].expr, this.linearExpression));