예제 #1
0
파일: Command.cs 프로젝트: ijrys/SQLUtils
 public T From(DataEntity <T> table)
 {
     Table = table;
     return(this as T);
 }
예제 #2
0
파일: Command.cs 프로젝트: ijrys/SQLUtils
 public T From(string schema, string table)
 {
     Table = new DataEntity <T>(this as T);
     Table.EntityName(schema, table).AS();
     return(this as T);
 }
예제 #3
0
파일: Command.cs 프로젝트: ijrys/SQLUtils
 public T FromAs(string schema, string table, string asname)
 {
     Table = new DataEntity <T>(this as T);
     return(Table.EntityName(schema, table).AS(asname));
 }
예제 #4
0
파일: Command.cs 프로젝트: ijrys/SQLUtils
 public T From(string table)
 {
     Table = new DataEntity <T>(this as T).EntityName(table);
     return(this as T);
 }
예제 #5
0
파일: JoinExp.cs 프로젝트: ijrys/SQLUtils
 public JoinExp <T> Join(SelectCommand selectedtable, string asname)
 {
     Table = new DataEntity <T>(Command);
     Table.SelectExpression(selectedtable.CommandScript()).AS(asname);
     return(this);
 }
예제 #6
0
파일: JoinExp.cs 프로젝트: ijrys/SQLUtils
 public JoinExp <T> Join(DataEntity <T> table)
 {
     Table = table;
     return(this);
 }
예제 #7
0
파일: JoinExp.cs 프로젝트: ijrys/SQLUtils
 public JoinExp <T> Join(string table, string asname)
 {
     Table = new DataEntity <T>(Command);
     Table.EntityName(table).AS(asname);
     return(this);
 }
예제 #8
0
파일: JoinExp.cs 프로젝트: ijrys/SQLUtils
 public JoinExp <T> Join(string table)
 {
     Table = new DataEntity <T>(Command).EntityName(table);
     return(this);
 }