コード例 #1
0
        public NewCommDbContext CreateDbContext(string[] args)
        {
            var builder       = new DbContextOptionsBuilder <NewCommDbContext>();
            var configuration = AppConfigurations.Get(WebContentDirectoryFinder.CalculateContentRootFolder(), addUserSecrets: true);

            NewCommDbContextConfigurer.Configure(builder, configuration.GetConnectionString(DemoConsts.ConnectionStringNewCommDbContext));

            return(new NewCommDbContext(builder.Options));
        }
コード例 #2
0
        public override void PreInitialize()
        {
            Configuration.ReplaceService <IEfCoreTransactionStrategy, DbContextEfCoreTransactionStrategy>(DependencyLifeStyle.Transient);

            if (!SkipDbContextRegistration)
            {
                Configuration.Modules.AbpEfCore().AddDbContext <NewCommDbContext>(options =>
                {
                    NewCommDbContextConfigurer.Configure(options.DbContextOptions, options.ConnectionString);
                    //if (options.ExistingConnection != null)
                    //{
                    //    NewCommDbContextConfigurer.Configure(options.DbContextOptions, options.ExistingConnection);
                    //}
                    //else
                    //{

                    //}
                });
            }
        }