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