Esempio n. 1
0
 public Migrator(IMigratorContext runnerContext) {
    RunnerContext = new InProcRunnerContext(runnerContext);
    MigrationsAssembly = runnerContext.MigrationsAssembly;
 }
Esempio n. 2
0
 public InProcRunnerContext(IMigratorContext migratorContext) : base(migratorContext.Announcer){
    Timeout = migratorContext.Timeout;
    Connection = migratorContext.Connection;
    Database = migratorContext.Database;
    PreviewOnly = migratorContext.PreviewOnly;
 }