我做了很多研究并测试了 FluentSecurity 库的 1.4 和 2.0 版本,但我似乎无法使用配置模式:
configuration.For<MyController>(x => x.GetCustomer())
.RequireRole(appRoles);
当我的控制器操作需要一个参数时,例如:
public ActionResult GetCustomer(int customerID)
当前是否支持这种类型的配置?如果是这样,我如何针对具有必需参数的操作实施角色要求?