Elvin Mammadov
Elvin Mammadov

Reputation: 27397

ASP.NET Core IdentityServer4 - Claims List

I want to create asp.net core app with Identity management. Now I need give management of Users-Roles-Claims to the user. But There is now Claims table in Database. I have only following tables:

enter image description here

Before this I used Role-Rights base identity, I created this custom. So I had everything in database. I could fetch Rights List, gave this list to a Role. My database was as follow:

enter image description here

But in this Identity I can't do this logic.

Please tell me how to create management of Identity for such stuation. Thanks a lot.

Upvotes: 2

Views: 924

Answers (1)

You can use UserManager (https://msdn.microsoft.com/en-us/library/dn613290(v=vs.108).aspx) for management your identity.

Some links: http://benfoster.io/blog/asp-net-identity-role-claims

Upvotes: 1

Related Questions