Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含具有角色的成员的数据库表,我有一个使用[Autorize(Roles="admin")] 我的问题的操作是如何告诉 Asp.net MVC 哪个成员与哪个角色相关联?
[Autorize(Roles="admin")]
您将需要使用默认的 asp.net 会员提供程序来处理此问题,或者您需要自己扮演角色。
基本上,您需要的是,当 .net 执行 user.IsInRole("admin") 时,委托人将在创建它的角色列表中拥有该角色。