For example, I have this controller which implements the Authorize Atribute to requiere Login and be a member of Administrator Role. But I don´t know where to assign the roles to the different users. Can you help me to be more oriented? thanks!
[Authorize(Roles = "Administrator")]
public ActionResult Admin()
{
return View();
}