I use NTLM in ASP.net MVC5. I'm looking for how I can add to loged user role. I have table with (id_user, role_name). where id_user is a User.Identity.Name . So what I must do to add role "Admin" to loged user?
I add to global.asax:
<authentication mode="Windows" />
<authorization>
<allow roles="Admin,Menager"/>
<deny users="?" />
</authorization>