コード例 #1
0
        public Seed()
        {
            var appUserContext = AppUsersDbContext.Create();

            if (appUserContext.AllMigrationsApplied())
            {
                appUserContext.Database.Migrate();
                appUserContext.EnsureSeeded();
            }
        }