Exemplo n.º 1
0
        public static void MigrateAndSeed(this KitchenMasterDbContext dbContext)
        {
            if (!dbContext.AllMigrationsApplied())
            {
                dbContext.Database.Migrate();
            }

            dbContext.EnureSeeded();
        }