在 ASP MVC5 RC 中,我没有让角色系统工作。我的数据库有一个角色存在的所有需求表,但是如果用户在角色中进行校对总是返回 false(没有 SQL 异常或其他东西)!?
我需要在IPrincipal
某个地方激活角色系统吗?
测试代码:
AccountController accCont = new AccountController();
// check role exist : result = true
var roleExist = await accCont.IdentityManager.Roles.RoleExistsAsync("61c84919-72e2-4114-9520-83a3e5f09de1");
// try find role by name : result = role object
var role = await accCont.IdentityManager.Roles.FindRoleByNameAsync("ProjectAdministrator");
// check with AccountController instance : result = true
var exist = await accCont.IdentityManager.Roles.IsUserInRoleAsync(User.Identity.GetUserId(), role.Id);
// check if current user is in role : result (both) = false????
var inRole = User.IsInRole(role.Id);
var inRole2 = User.IsInRole(role.Name);
我还尝试构建自定义扩展,例如命名空间中的IIdentity.GetUserId()
扩展方法Microsoft.AspNet.Identity.Owin
。
namespace Microsoft.AspNet.Identity
{
public static class IdentityExtensions
{
public static string IsUserInRole(this IIdentity identity)
{
if (identity == null)
{
throw new ArgumentNullException("identity");
}
ClaimsIdentity identity2 = identity as ClaimsIdentity;
if (identity2 != null)
{
var result = identity2.FindFirstValue(IdentityConfig.Settings.GetAuthenticationOptions().RoleClaimType);
return null; // later result
}
return null;
}
}
}
但是索赔类型的结果RoleClaimType
总是null
:(我真的坚持这一点。
谢谢您的帮助!史蒂芬