Example #1
0
 public void Visit(BooleanExistsExpression booleanExistsExpression)
 {
     if (_innerVisitor != null)
     {
         booleanExistsExpression.Accept(_innerVisitor);
     }
     booleanExistsExpression.Subquery.Accept(this);
 }
Example #2
0
 public void Visit(BooleanExistsExpression expression)
 {
     Write("EXISTS (");
     WriteLine();
     using (Indent(2))
         expression.Subquery.Accept(this);
     WriteLine();
     Write(")");
 }
Example #3
0
 public void Visit(BooleanExistsExpression booleanExistsExpression)
 {
 }