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