Esempio n. 1
0
 public SelectQueryImpl(Configuration configuration, WithImpl with, bool distinct) :
     this(configuration, with, null, distinct)
 {
 }
Esempio n. 2
0
 SelectImpl(Configuration configuration, WithImpl with, bool distinct) : this(
         new SelectQueryImpl <R>(configuration, with, distinct))
 {
 }
Esempio n. 3
0
 public SelectQueryImpl(Configuration configuration, WithImpl with, TableLike <R> from, bool distinct)
 {
     this.from = new TableList();
     //if (from != null)
     //    this.from.add(from.asTable());
 }
Esempio n. 4
0
 internal SelectImpl(Configuration configuration, WithImpl with) : this(configuration, with, false)
 {
 }