Lets say I have a working implementation of authentication and authorization in an ASP.NET Core MVC app, and on an action I have [Authorize(Roles = "Admin")]
attribute. I have just logged in and I'm about to call that action.
When that action is called, where does the [Authorize(Roles = "Admin")]
attribute look to see if the user has the role of "Admin"
? Where is "Admin"
stored?