7 references to BinaryNode
System.Data.Common (7)
System\Data\Filter\BinaryNode.cs (1)
1526
:
base
(table, op, left, right)
System\Data\Filter\ExpressionParser.cs (1)
728
expr = new
BinaryNode
(_table, opInfo._op, nodeLeft, nodeRight);
System\Data\Select.cs (5)
135
_linearExpression = (_linearExpression == null ? e : new
BinaryNode
(_table, Operators.And, e, _linearExpression));
144
canColumn.expr = (canColumn.expr == null ? expr : new
BinaryNode
(_table, Operators.And, expr, canColumn.expr));
167
canColumn.expr = (canColumn.expr == null ? expr : new
BinaryNode
(_table, Operators.And, expr, canColumn.expr));
177
_linearExpression = (_linearExpression == null ? expr : new
BinaryNode
(_table, Operators.And, expr, _linearExpression));
499
_linearExpression = (_linearExpression == null ? _candidateColumns[i].expr : new
BinaryNode
(_table, Operators.And, expr, _linearExpression));