Exemplo n.º 1
0
        public SqlExistsPredicate GetSqlExistsPredicate()
        {
            SqlExistsPredicate newSqlExistsPredicate = new SqlExistsPredicate(this);

            this.sqlPredicate = newSqlExistsPredicate;
            return(newSqlExistsPredicate);
        }
Exemplo n.º 2
0
 public virtual void Visiting(SqlExistsPredicate existsPredicate)
 {
     sqlBuilder.Append("Exists (");
     existsPredicate.SqlSelectStatement.Accept(this);
     sqlBuilder.Append(")");
 }
Exemplo n.º 3
0
 public virtual void Visited(SqlExistsPredicate existsPredicate)
 {
 }
 public SqlExistsPredicate GetSqlExistsPredicate()
 {
     SqlExistsPredicate newSqlExistsPredicate = new SqlExistsPredicate(this) ;
     this.sqlPredicate = newSqlExistsPredicate;
     return newSqlExistsPredicate;
 }