每当我引用一个UserProfile时,EF都会创建一个新的UserProfile

本文关键字:UserProfile 一个 创建 EF 引用 | 更新日期: 2023-09-27 18:20:40

我的问题是,以下代码不仅创建了一个ProtectedPassword(应该是这样),而且还创建了插入其中的所有者,即使该所有者已经存在。

UserProfile user = PublicUtility.GetAccount(User.Identity.Name); //gets an existing UserProfile
ProtectedPassword pw = new ProtectedPassword(model.Name, user, model.Password);
ProtectedPassword.Create(pw);

因此,在创建新的ProtectedPassword之后,我最终会引用一个新的UserProfile(除了一个新ID之外,其他值与前一个相同)。

我已经处理这个问题好几个小时了,如果有人能帮我,我将不胜感激!

顺便说一句,我使用ASP.NET MVC4和EF Code First。

首先,实体:受保护的密码:

    [Table("ProtectedPassword")]
    public class ProtectedPassword : ProtectedProperty
    {
        [Required]
        [MinLength(3)]
        [MaxLength(20)]
        public string Password { get; set; }
        private ProtectedPassword()
        {
        }
        public ProtectedPassword(string name, UserProfile owner, string password)
        {
            Name = name;
            Owner = owner;
            Password = password;
            SubId = PublicUtility.GenerateRandomString(8, 0);
            Type = ProtectedPropertyType.Password;
        }
        public static bool Create(ProtectedPassword pw)
        {
            try
            {
                using (MediaProfitsDb db = new MediaProfitsDb())
                {
                    db.ProtectedPasswords.Add(pw);
                    db.SaveChanges();
                    return true;
                }
            }
            catch
            {
                return false;
            }
        }
}

从ProtectedProperty:继承

public class ProtectedProperty
    {
        [Key]
        [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
        public int PropertyId { get; set; }
        [Required]
        public string SubId { get; set; }
        public int Downloads { get; set; }
        [Required]
        public UserProfile Owner { get; set; }
        [Required]
        public string Name { get; set; }
        [Required]
        public ProtectedPropertyType Type { get; set; }
    }

最后是用户档案:

    [Table("UserProfile")]
    public class UserProfile
    {
        [Key]
        [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
        public int UserId { get; set; }
        [Required]
        public string UserName { get; set; }
        [Required]
        public string AffiliateId { get; set; }
        public UserProfile Referer { get; set; }
        [Required]
        public int Balance { get; private set; }
        [Required]
        [EmailAddress]
        public string PaypalEmail { get; set; }
        public int AllTimeEarnings { get; set; }
}

每当我引用一个UserProfile时,EF都会创建一个新的UserProfile

我认为问题是Password上的UserProfile对象没有附加到用于插入的DbContext。这让EF认为这是一个新的对象。

尝试:

using (MediaProfitsDb db = new MediaProfitsDb())
{
    db.UserProfiles.Attach(pw.UserProfile);
    db.ProtectedPasswords.Add(pw);
    db.SaveChanges();
    return true;
}
相关文章: