I am using aspnet identity 3.0 in my asp.net core project. I have a school table and I want that when a user logs in then he will select a school and he may have one or more roles in that school(student, parent, teacher, admin). When he will select the school, his default role will be selected in that role.
For that I want to extend asp.netuserroles table and add two more fields ( schoolid, and defaultrole). Which classes do I need to modify and how can I access these extra fields?
Please suggest.
Thanks.