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; }
protected internal MySQLOrderBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, Data.Objects.IDbColumn column) : base(factory, where) => this.column = column;