So, I've tried everything under the sun to Scaffold this Login page in my .Net Core 3.1 MVC application. I'm using Microsoft.AspNetCore.Identity for authentication and I'm also debugging and developing using docker-compose. In docker I use a DB in AWS for development but locally I use a local SQL Server. I keep getting this same error:
Here's all the things I've tried:
Any ideas? From what I can tell at this point, it keeps erroring out when trying to install the Microsoft.EntityFrameworkCore.SqlServer package. Something tells me that there could be an issue caused by the different Sql Servers being used but I'm not sure how to figure that out because I'm able to build and run the project successfully both with the MVC application and the docker-compose as start up projects.
Just downgraded every project and package back down to 3.1.0 across the board and that magically fixed everything. I'm not even sure why I was having an issue.