Perform design-time development tasks for Entity Framework Core. More information: https://learn.microsoft.com/ef/core/cli/dotnet.
dotnet ef database update migration
dotnet ef database drop
DbContext
types:dotnet ef dbcontext list
DbContext
and entity types for a database:dotnet ef dbcontext scaffold connection_string provider
dotnet ef migrations add name
dotnet ef migrations remove
dotnet ef migrations list
dotnet ef migrations script from_migration to_migration