コード例 #1
0
 public SelectExpression(TargetExpression columns, FromExpression table)
 {
     this.Target = columns;
     this.From   = table;
     this.Where  = new WhereExpression(null);
 }
コード例 #2
0
 public SelectExpression(TargetExpression columns, FromExpression table, WhereExpression where)
 {
     this.Target = columns;
     this.From   = table;
     this.Where  = where;
 }