System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (4)
601return this.VisitInfix(e, e.Left, _opMap[e.ExpressionKind], e.Right);
627return this.VisitInfix(e, e.Arguments[0], _opMap[e.ExpressionKind], e.Arguments[1]);
633return this.VisitInfix(e, e.Left, "And", e.Right);
638return this.VisitInfix(e, e.Left, "Or", e.Right);