public MyProjectMigratorModule(MyProjectEntityFrameworkModule abpProjectNameEntityFrameworkModule)
        {
            abpProjectNameEntityFrameworkModule.SkipDbSeed = true;

            _appConfiguration = AppConfigurations.Get(
                typeof(MyProjectMigratorModule).GetAssembly().GetDirectoryPathOrNull()
                );
        }
 public MyProjectWebTestModule(MyProjectEntityFrameworkModule abpProjectNameEntityFrameworkModule)
 {
     abpProjectNameEntityFrameworkModule.SkipDbContextRegistration = true;
 }
Example #3
0
 public WorkerServiceModule(MyProjectEntityFrameworkModule dataModule)
 {
     dataModule.SkipDbSeed = true;
     _appConfiguration     = AppConfigurations.Get(Directory.GetCurrentDirectory());
 }
Example #4
0
 public AllPointsTestModule(MyProjectEntityFrameworkModule abpProjectNameEntityFrameworkModule)
 {
     abpProjectNameEntityFrameworkModule.SkipDbContextRegistration = true;
     abpProjectNameEntityFrameworkModule.SkipDbSeed = true;
 }