예제 #1
0
 public SqlBuilder(SqlOperationKind operationKind, string table)
     : this(operationKind, new SqlTable {
     Name = table
 })
 {
 }
예제 #2
0
 public SqlBuilder(SqlOperationKind operationKind, SqlTable table)
 {
     this.operationKind = operationKind;
     this.table         = table;
     this.PageSize      = 10;
 }