protected internal MySQLWhereOrBuilderExtensible(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, ICondition condition) : base(factory, where, condition) => this.condition = condition;
 public MySQLOrderDESCBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, Data.Objects.IDbColumn column) : base(factory, where, column)
 {
 }
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, int rows) : this(factory, where, 0, rows)
 {
 }
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, int offset, int rows) : base(factory, where)
 {
     this.offset = offset;
     this.rows   = rows;
 }
Exemplo n.º 5
0
 protected internal MySQLOrderBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, Data.Objects.IDbColumn column) : base(factory, where) => this.column = column;