コード例 #1
0
        public CaptchaMigrationsDbContext CreateDbContext(string[] args)
        {
            CaptchaEfCoreEntityExtensionMappings.Configure();

            var configuration = BuildConfiguration();

            var builder = new DbContextOptionsBuilder <CaptchaMigrationsDbContext>()
                          .UseSqlServer(configuration.GetConnectionString("Default"));

            return(new CaptchaMigrationsDbContext(builder.Options));
        }
コード例 #2
0
 public override void PreConfigureServices(ServiceConfigurationContext context)
 {
     CaptchaEfCoreEntityExtensionMappings.Configure();
 }