Beispiel #1
0
 public T From(string schema, string table)
 {
     Table = new DataEntity <T>(this as T);
     Table.EntityName(schema, table).AS();
     return(this as T);
 }
Beispiel #2
0
 public T FromAs(string schema, string table, string asname)
 {
     Table = new DataEntity <T>(this as T);
     return(Table.EntityName(schema, table).AS(asname));
 }
Beispiel #3
0
 public JoinExp <T> Join(string table, string asname)
 {
     Table = new DataEntity <T>(Command);
     Table.EntityName(table).AS(asname);
     return(this);
 }