The Issue
I'm trying to seed some users in my project (my code is identical to this), however when I inspect my AspNetUsers table, no rows have been created.
Why I am certain I've not messed up
I have enabled migrations, updated my database, confirmed my password and other attributes don't violate any constraints, followed this online tutorial on Identity to the T &, as posted above, confirmed my code against an existing StackOverflow post.
Furthermore, the update-database command successfully created new properties for my ApplicationUser in AspNetUsers table, it just did not create my users (despite Package Manager Console confirming the seed method ran.
I'm getting no indication of any errors, so I'd appreciate any guidance on how to begin debugging this :)