Answers for "net core 6 add migration"

0

dotnet core cli add migration

In .net core CLI use 
dotnet ef migrations add InitialCreate
Posted by: Guest on December-01-2021
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