I made a MVC project, that includes 2 projects.
I want to add identity to my project. So i found the following NuGet Packages
I used public class NameDbContext : IdentityDbContext<IdentityUser>
in my DbContext class.
I clicked Add on the Web-project -> choose "New Scaffolded Item" -> pictures below
Any ideas?
EDIT:
i can see in my database that the tables are created, after the NuGet Packages and the add-migration
& update-database
commands that followed.
I also tried my DbContext class without the <IdentityUser>
like this
public class NameDbContext : IdentityDbContext
You can try to updated all NuGet packages
from Tools->Nuget Package Manager -> Manage NuGet Packages for Solution -> Updates tab -> Update All.