Answers for "dotnet ef run migration command"

10

ef migrations

PM> add-migration MyFirstMigration
PM> Update-Database
Posted by: Guest on November-18-2020
0

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();

    ...
}
Posted by: Guest on March-28-2022

Browse Popular Code Answers by Language