Exemplo n.º 1
0
 // Methods
 internal Visitor(bool doLifting, Dictionary <SqlAlias, bool> aliasesForLifting,
                  Dictionary <SqlExpression, bool> liftedExpressions)
 {
     this.doLifting         = doLifting;
     this.aliases           = new SqlOuterApplyReducer.SqlAliasesReferenced(aliasesForLifting);
     this.liftedExpressions = liftedExpressions;
     this.canLiftAll        = true;
     this.aggregateChecker  = new SqlAggregateChecker();
 }
Exemplo n.º 2
0
 // Methods
 internal Visitor(SqlOuterApplyReducer.SqlAliasesReferenced parent)
 {
     this.parent = parent;
 }