Links:
Code on GitHub: https://github.com/SolutionArchitectC...
Microsoft Scaffold Example: https://learn.microsoft.com/en-us/asp...
Steps to create the Scaffold Identity Authentication using ASP.NET Core WebApp: (Note, I used .NET 8.0 Framework and ASP.NET Core Web App)
dotnet new webapp --auth Individual
dotnet tool install --global dotnet-ef
dotnet tool install --global dotnet-aspnet-codegenerator
dotnet add package Microsoft.AspNetCore.Identity.UI
dotnet add package Microsoft.EntityFrameworkCore.Sqlite
dotnet add package Microsoft.EntityFrameworkCore.Tools
dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore
dotnet add package Microsoft.VisualStudio.Web.CodeGeneration.Design
dotnet aspnet-codegenerator identity -dc bootcampOAuthRepo.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout;Account.RegisterConfirmation" --databaseProvider sqlite
dotnet ef migrations add InitialCreate
dotnet ef database update