Exemplo n.º 1
0
        public bool VisitExprExists(ExprExists expr, TCtx arg)
        {
            var res = this.Visit(expr, "Exists", arg, out var argOut) && this.Accept("SubQuery", expr.SubQuery, argOut);

            this._visitor.EndVisitExpr(expr, arg);
            return(res);
        }
Exemplo n.º 2
0
 public static ExprExists WithSubQuery(this ExprExists original, IExprSubQuery newSubQuery)
 => new ExprExists(subQuery: newSubQuery);
Exemplo n.º 3
0
 public bool VisitExprExists(ExprExists exprExists, IExpr?parent)
 {
     this.Builder.Append("EXISTS");
     this.AcceptPar('(', exprExists.SubQuery, ')', exprExists);
     return(true);
 }