I have a tree which is in a table named cartable. I want to use .net core Identity to grant some permissions to this tree like these:
- Each Role has some permissions such as "Read Letter","Create a Letter","Delete a Letter" and so on
- Each User may have a one of the Role on a Node of Cartable table in a specific Date i.e from 06/01/2019 to 05/10/2020
would you please help me how to implement it? should I use Claim or I have to customize UserRole table of .net Identity
Thanks