Is there a way to create an entry (a user) in another Asp.Net Identity Database from another Project other than creating a user in the current Asp.Net Identity? Basically, in my ASP.NET CORE (main) app I want to create some customer users that would be stored in another Identity Database, other than the "ROOT" application - like to say.
I already have an AuthenticationContext defined in ConfigureServices method of the Startup class. That's bound to the userManager and I can easily create users in this context.
However, I want to create user in another Context (which is also an Identity Database) - but used as Identity Context for another application. I want to mention that I have the SQL credentials for that database that I can use in appSettings.json.
Thank you!