コード例 #1
0
 public void Visit(DropForeignKeyCommand command) {
 }
コード例 #2
0
 public override void Visit(DropForeignKeyCommand command) {
     _output.WriteLine("Dropping foreign key {0}", command.Name);
 }
コード例 #3
0
ファイル: SchemaBuilder.cs プロジェクト: anycall/Orchard
 public SchemaBuilder DropForeignKey(string srcModule, string srcTable, string name) {
     var command = new DropForeignKeyCommand(String.Concat(_formatPrefix(srcModule), srcTable), name);
     Run(command);
     return this;
 }
コード例 #4
0
 public abstract void Visit(DropForeignKeyCommand command);