加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net-mvc – 为什么UserManager.CreateIdentityAsync()正在寻

发布时间:2020-12-16 00:12:30 所属栏目:asp.Net 来源:网络整理
导读:我正在使用Identity2.0和MVC5 CodeFirst我已经扩展了IdentityUser和IdentityRole,如下所示: public class ApplicationUser : IdentityUser{ [Required] [StringLength(50)] public string FirstName { get; set; } [Required] [StringLength(50)] public st
我正在使用Identity2.0和MVC5 CodeFirst我已经扩展了IdentityUser和IdentityRole,如下所示:
public class ApplicationUser : IdentityUser
{
    [Required]
    [StringLength(50)]
    public string FirstName { get; set; }

    [Required]
    [StringLength(50)]
    public string LastName { get; set; }
}

public class ApplicationRole : IdentityRole
{
    [Required]
    [StringLength(50)]
    public string ProperName { get; set; }

    [Required]
    public string Description { get; set; }
}

public class MyAppDb : IdentityDbContext<ApplicationUser,ApplicationRole,string,IdentityUserLogin,IdentityUserRole,IdentityUserClaim>
{
    public MyAppDb()
        : base("MyAppDb")
    {
    }
}

注意MyAppDb继承自IdentityDbContext但我传递的是ApplicationRole而不是IdentityRole.我的ApplicationRole继承自IdentityRole,所以这应该不是问题.

但…

我的AccountController抛出了这个错误:

The entity type IdentityRole is not part of the model for the current context.

在此代码中的UserManager.CreateIdentityAsync(…):

private async Task SignInAsync(ApplicationUser user,bool isPersistent)
{
     AuthenticationManager.SignOut(DefaultAuthenticationTypes.ExternalCookie);
     var identity = await UserManager.CreateIdentityAsync(user,DefaultAuthenticationTypes.ApplicationCookie);
     AuthenticationManager.SignIn(new AuthenticationProperties() { IsPersistent = isPersistent },identity);
}

用户正在这里创建:

var user = await UserManager.FindAsync(model.UserName,model.Password);
        if (user != null)
        {
            await SignInAsync(user,model.RememberMe);
            return RedirectToLocal(returnUrl);
        }

什么是“重大故障”?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读