What app.UseMigrationsEndPoint does in .NET Core Web Application Startup class
This app.UseMigrationsEndPoint() is actually a very handy tool in development. As we develop, we add entities to the db context, or modify ones we have. We run dotnet ef migrations add <NameOfMigration> as usual, and that would generate migration files. I personally would typically run dotnet ef database update when the migrations add command succeeds. … Read more