예제 #1
0
파일: FromClause.cs 프로젝트: kenegozi/d9
 public FromClause(Model.Table.AbstractTable table)
 {
     this.table = table;
 }
예제 #2
0
 public JoinExpression(Model.Table.AbstractTable table, WhereExpression on)
 {
     this.table = table;
     this.on = on;
 }