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

asp.net – 不支持每种类型的多个对象集.对象集’ApplicationUse

发布时间:2020-12-16 04:19:43 所属栏目:asp.Net 来源:网络整理
导读:我陷入了一个奇怪的问题. 我正在学习MVC 5,几乎所有内容都是由内置模板创建的. 我只添加了一个类历史 public class History{ [Key] public DateTime Date { get; set; } public virtual ApplicationUser User { get; set; } public string ItemName { get; s
我陷入了一个奇怪的问题.

我正在学习MVC 5,几乎所有内容都是由内置模板创建的.
我只添加了一个类历史

public class History
{
    [Key]
    public DateTime Date { get; set; }

    public virtual ApplicationUser User { get; set; }

    public string ItemName { get; set; }

}

在内置的ApplicationUser中:

public class ApplicationUser : IdentityUser
    {
        public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
        {
            // Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
            var userIdentity = await manager.CreateIdentityAsync(this,DefaultAuthenticationTypes.ApplicationCookie);
            // Add custom user claims here
            return userIdentity;
        }

        public virtual ICollection<History> Histories { get; set; }
    }

这是错误消息:

Multiple object sets per type are not supported. The object sets 'ApplicationUsers' and 'Users' can both contain instances of type 'MyOnlineShopping.Models.ApplicationUser'.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

    Exception Details: System.InvalidOperationException: Multiple object sets per type are not supported. The object sets 'ApplicationUsers' and 'Users' can both contain instances of type 'MyOnlineShopping.Models.ApplicationUser'.

    Source Error: 


    Line 124:            {
    Line 125:                var user = new ApplicationUser() { UserName = model.Email,Email = model.Email };
    Line 126:                IdentityResult result = await UserManager.CreateAsync(user,model.Password);
    Line 127:                if (result.Succeeded)
    Line 128:                {
Source File: f:WorkplaceMyOnlineShoppingMyOnlineShoppingControllersAccountController.cs    Line: 126

解决方法

我最终将ApplicationUser重命名为User,重新加载,一切都神奇地开始工作.

看起来模板有点出没了.

(编辑:李大同)

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

    推荐文章
      热点阅读