我想根据用户角色授予用户访问权限。我有两个用户角色。他们是管理员和用户。
我这样写我的控制器。
[Authorize(Roles = "Admin")] // my Problem is here. I don't know how to set the current user role
public ActionResult Index()
{
var query = from company in db.tblCompanies
select company;
return View(query.ToList());
}
但我不知道如何设置Roles = "Admin"
客户登录后。在我的用户故事中,我有角色 coloum,它可以保存管理员或用户。但我不知道如何设置以及我应该在哪里设置Roles = "Admin".