dotnet core update migration on startup

Code Example - dotnet core update migration on startup

                
                        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, DataContext dataContext)
{
    // migrate any database changes on startup (includes initial db creation)
    dataContext.Database.Migrate();

    ...
}
                    
                
 

dotnet core cli add migration

                        
                                In .net core CLI use 
dotnet ef migrations add InitialCreate
                            
                        
 

Related code examples