public MySQLOrderDESCBuilder(MySQLCommandFactory factory, MySQLFromBuilder from, Data.Objects.IDbColumn column) : base(factory, from, column)
 {
 }
コード例 #2
0
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLFromBuilder from, int rows) : this(factory, from, 0, rows)
 {
 }
コード例 #3
0
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLFromBuilder from, int offset, int rows) : base(factory, from)
 {
     this.offset = offset;
     this.rows   = rows;
 }
コード例 #4
0
 protected internal MySQLWhereBuilderExtensible(MySQLCommandFactory factory, MySQLFromBuilder from, ICondition condition) : base(factory, from) => this.condition = condition;