protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLOrderBuilder order, int rows) : this(factory, order, 0, rows)
 {
 }
 protected internal MySQLWhereOrBuilderExtensible(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, ICondition condition) : base(factory, where, condition) => this.condition = condition;
Пример #3
0
 protected internal MySQLWhereBuilderExtensible(MySQLCommandFactory factory, MySQLFromBuilder from, ICondition condition) : base(factory, from) => this.condition = condition;
 protected internal MySQLIntoValuesBuilder(MySQLCommandFactory factory, MySQLIntoColumnsBuilder table, Data.Objects.IDbParameter parameter) : base(factory, table) => this.parameter      = parameter;
 protected internal MySQLDeleteBuilder(MySQLCommandFactory factory) : base(factory)
 {
 }
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLOrderBuilder order, int offset, int rows) : base(factory, order)
 {
     this.offset = offset;
     this.rows   = rows;
 }
 public MySQLOrderDESCBuilder(MySQLCommandFactory factory, MySQLFromBuilder from, Data.Objects.IDbColumn column) : base(factory, from, column)
 {
 }
Пример #8
0
 protected internal MySQLInsertBuilder(MySQLCommandFactory factory) : base(factory)
 {
 }
Пример #9
0
 protected internal MySQLOrderBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, Data.Objects.IDbColumn column) : base(factory, where) => this.column = column;
 public MySQLBuilder(MySQLCommandFactory factory) : this(factory, null)
 {
 }
 protected internal MySQLIntoColumnsBuilder(MySQLCommandFactory factory, MySQLIntoBuilder table, Data.Objects.IDbColumn column) : base(factory, table) => this.column = column;
 public MySQLBuilder(MySQLCommandFactory factory, MySQLBuilder previous)
 {
     this.factory  = factory;
     this.Previous = previous;
 }
Пример #13
0
 protected internal MySQLWhereAndBuilder(MySQLCommandFactory factory, MySQLWhereBuilder where, ICondition condition) : base(factory, where, condition) => this.condition = condition;
Пример #14
0
 protected internal MySQLConditionFactory(MySQLCommandFactory commandFactory) => this.commandFactory = commandFactory;
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLFromBuilder from, int offset, int rows) : base(factory, from)
 {
     this.offset = offset;
     this.rows   = rows;
 }
 protected internal MySQLSelectBuilder(MySQLCommandFactory factory, MySQLSelectBuilder selected) : base(factory, selected)
 {
 }
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, int offset, int rows) : base(factory, where)
 {
     this.offset = offset;
     this.rows   = rows;
 }
 protected internal MySQLTableBuilder(MySQLCommandFactory factory, MySQLSelectBuilder select, Data.Objects.IDbTable table) : base(factory, select) => this.table = table;
 public MySQLOrderDESCBuilder(MySQLCommandFactory factory, MySQLOrderBuilder orderby, Data.Objects.IDbColumn column) : base(factory, orderby, column)
 {
 }
 protected internal MySQLIntoBuilder(MySQLCommandFactory factory, MySQLInsertBuilder insert, Data.Objects.IDbTable table) : base(factory, insert)
 {
     this.insert = insert;
     this.table  = table;
 }
 public MySQLOrderDESCBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, Data.Objects.IDbColumn column) : base(factory, where, column)
 {
 }
 protected MySQLIntoBuilder(MySQLCommandFactory factory, MySQLIntoBuilder setted) : base(factory, setted)
 {
 }
 protected internal MySQLTableUpdateCommandBuilderUpdatedColumnsSetted(MySQLCommandFactory factory, MySQLTableUpdateCommandBuilder table, Data.Objects.IDbColumn column, Data.Objects.IDbParameter parameter) : base(factory, table)
 {
     this.column    = column;
     this.parameter = parameter;
 }
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLFromBuilder from, int rows) : this(factory, from, 0, rows)
 {
 }
Пример #25
0
 protected internal MySQLWhereBuilder(MySQLCommandFactory factory, MySQLTableBuilder table, ICondition condition) : base(factory, table) => this.condition = condition;
 protected internal MySQLLimitBuilder(MySQLCommandFactory factory, MySQLWhereBuilderExtensible where, int rows) : this(factory, where, 0, rows)
 {
 }
Пример #27
0
 protected internal MySQLTableUpdateCommandBuilder(MySQLCommandFactory factory, MySQLUpdateBuilder update, Data.Objects.IDbTable table) : base(factory, update, table) => this.table = table;
Пример #28
0
 protected internal MySQLSelectBuilderColumnsSelected(MySQLCommandFactory factory, MySQLSelectBuilder select, Data.Objects.IDbColumn column) : base(factory, select) => this.column = column;