Ejemplo n.º 1
0
        protected override IExistingSchema CreateItem(string name)
        {
            AlterSchemaCommand alterSchemaCommand = new AlterSchemaCommand(_command, name);

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