Example #1
0
        protected override IExistingSchema CreateItem(string name)
        {
            AlterSchemaCommand alterSchemaCommand = new AlterSchemaCommand(_command, name);

            _command.Add(alterSchemaCommand);
            return(new ExistingSchema(alterSchemaCommand));
        }
Example #2
0
 protected TableCommand(AlterSchemaCommand parent, string tableName)
     : this((Command)parent, tableName)
 {
 }
Example #3
0
 internal TableCollection(AlterSchemaCommand command)
 {
     _command = command;
 }
Example #4
0
 public AlterTableCommand(AlterSchemaCommand parent, string tableName)
     : base(parent, tableName)
 {
 }
Example #5
0
 public AlterTableCommand(AlterSchemaCommand parent, string tableName)
     : base(parent, tableName)
 {
 }
Example #6
0
 public ExistingSchema(AlterSchemaCommand command)
 {
     _command = command;
     _tables  = new TableCollection(command);
 }
Example #7
0
 protected TableCommand(AlterSchemaCommand parent, string tableName)
     : this((Command)parent, tableName)
 {
 }