Пример #1
0
        public ProjectsNGDbContext CreateDbContext(string[] args)
        {
            var builder       = new DbContextOptionsBuilder <ProjectsNGDbContext>();
            var configuration = AppConfigurations.Get(
                WebContentDirectoryFinder.CalculateContentRootFolder(),
                addUserSecrets: true
                );

            ProjectsNGDbContextConfigurer.Configure(builder, configuration.GetConnectionString(ProjectsNGConsts.ConnectionStringName));

            return(new ProjectsNGDbContext(builder.Options));
        }
        public override void PreInitialize()
        {
            if (!SkipDbContextRegistration)
            {
                Configuration.Modules.AbpEfCore().AddDbContext <ProjectsNGDbContext>(options =>
                {
                    if (options.ExistingConnection != null)
                    {
                        ProjectsNGDbContextConfigurer.Configure(options.DbContextOptions, options.ExistingConnection);
                    }
                    else
                    {
                        ProjectsNGDbContextConfigurer.Configure(options.DbContextOptions, options.ConnectionString);
                    }
                });
            }

            // Set this setting to true for enabling entity history.
            Configuration.EntityHistory.IsEnabled = false;

            // Uncomment below line to write change logs for the entities below:
            // Configuration.EntityHistory.Selectors.Add("ProjectsNGEntities", EntityHistoryHelper.TrackedTypes);
            // Configuration.CustomConfigProviders.Add(new EntityHistoryConfigProvider(Configuration));
        }