In our ASP.NET MVC Core app we are using ASP.NET Idenity to implement user management.
Question: Instead of using ASP.NET user interface, how can we directly create a user into the SQL Database (using a SQL statement etc.)? Will creating a user directly in ASPNETUsers table cause any issue? Note: We need to populate built-in identity table ASPNETUsers
from a list of users. Password can be anything and no specific role is required.
Here is the insert script for AspNetUsers
Of course you will need to generate your own Guids and hash your own password.