This guide walks through setting up the database for the first time.
Ensure your connection string is properly configured. See Connection String Setup.
Run the following command in your project directory:
dotnet ef database update
This will create the database and apply all pending migrations.
After migrations complete, you should see these tables:
AspNetUsers - User accountsAspNetRoles - RolesAspNetUserRoles - User-role mappingsAspNetUserClaims - User claimsAspNetUserLogins - External login providersAspNetUserTokens - Authentication tokens__EFMigrationsHistory - Migration history