Skip to content

A .Net6 web app that uses Identity, Entity Framework Core, and Dapper.

Notifications You must be signed in to change notification settings

johndward01/ASP.NET-Core-MVC-Identity.NET6

Repository files navigation

ASP.NET-Core-MVC-Identity.NET6

A .Net6 MVC web app that uses IDentity for authentication and Dapper as the ORM.

  • Fork and clone the project
  • Then in your Package Manager Console window:
    • Run the dir command -Then cd into your Project that the Startup.cs file is located in
  • Now run the EF Core Migration Commands:
    • dotnet ef migrations add MyCommand1
    • dotnet ef database update
  • Once those commands complete, finish setting up your appsettings.json file with your connection string
  • Then run the application

Note: There might be 1 EF Core Migration Command missing in the Readme. Use the tutorial here to double check if any commands were missed by me: https://www.yogihosting.com/aspnet-core-identity-setup/