Setup
To install the library, you can run the following command:
dotnet add package EntityFrameworkCore.Migrator.AspNetCore
To add the tool to your ASP.NET Core project, you need to add the following line to your Program.cs
or Startup.cs
file (you also need to register your database context and replace DatabaseContext
with your DbContext
type):
builder.Services.AddEntityFrameworkCoreMigrator<DatabaseContext>();
Since the tool is using Razor Pages, make sure you add services and mapping, as well as static static files in your Program.cs
or Startup.cs
file.
builder.Services.AddRazorPages();
app.UseStaticFiles();
app.MapRazorPages();