Esempio n. 1
0
		internal PredicateLifter(bool doLifting, HashSet<SqlAlias> aliasesForLifting, HashSet<SqlExpression> liftedExpressions)
		{
			this.doLifting = doLifting;
			this.aliases = new Common.SqlAliasesReferenced(aliasesForLifting);
			this.liftedExpressions = liftedExpressions;
			this.CanLiftAll = true;
			this.aggregateChecker = new SqlAggregateChecker();
		}
 internal PredicateLifter(bool doLifting, HashSet <SqlAlias> aliasesForLifting, HashSet <SqlExpression> liftedExpressions)
 {
     this.doLifting         = doLifting;
     this.aliases           = new Common.SqlAliasesReferenced(aliasesForLifting);
     this.liftedExpressions = liftedExpressions;
     this.CanLiftAll        = true;
     this.aggregateChecker  = new SqlAggregateChecker();
 }