public SelectQueryImpl(Configuration configuration, WithImpl with, TableLike <R> from, bool distinct) { this.from = new TableList(); //if (from != null) // this.from.add(from.asTable()); }
public void addFrom <X>(TableLike <X> from) where X : Record { throw new System.NotImplementedException(); }
public SelectImpl <R> from <X>(TableLike <X> table) where X : Record { getQuery().addFrom(table); return(this); }