Posts by crs0794 • 23 points
1 post
-
2
votes1
answer147
viewsQ: Allow Multiple Providers with Authorize Attribute
I’m trying to implement permissioning by Roles within my controller: [PerfilFiltro(Roles = "Administrador,Caixa")] public ActionResult Index() { return View(db.Adicional.ToList()); } public class…