Hulkstance
ASP Identity <> Microsoft Entra ID
if the app needs to know the list of the users:
- in Entra ID, they're stored in the Azure Active Directory
- in ASP.NET Identity, they're stored locally
I don't think
signInManager.PasswordSignInAsync
can interact with Microsoft Graph API, so ASP.NET Identity's abstraction is no longer applicable.
I also have foreign keys on the User
table, which likely means I still need to keep the User
table locally for that purpose and add a new column that references the Entra ID user. I haven't done this before, and I'm not sure if this is the best approach.33 replies