Exemple #1
0
 internal CompoundQuery(CompoundQueryClause compoundQueryClause
                        , OrderBy orderBy
                        , ILimitClause limit)
     : this(compoundQueryClause.Left
            , compoundQueryClause.Operator
            , compoundQueryClause.Right
            , orderBy
            , limit
            , compoundQueryClause.Comments)
 {
 }
 void IVisitor.VisitOnCompoundOp(CompoundQueryClause compoundQuery, int offset)
 {
     this.ParentExists(compoundQuery);
 }
 void IVisitor.VisitBefore(CompoundQueryClause compoundQuery)
 {
     this.ParentExists(compoundQuery);
 }
 void IVisitor.VisitAfter(CompoundQueryClause compoundQuery)
 {
     this.ParentExists(compoundQuery);
 }
Exemple #5
0
 internal CompoundQuery(CompoundQueryClause compoundQueryClause)
     : this(compoundQueryClause
            , new OrderBy()
            , null)
 {
 }