如何解决EF6 调用 SaveChanges() 时出现重复记录
时,记录会重复我尝试了所有解决方案,尽我所知尝试
这是我的上下文和模型。
public partial class EllesiaDB : DbContext
{
public EllesiaDB()
: base("EllesiaDB")
{
}
public DbSet<AccountModel> Accounts { get; set; }
public DbSet<CharacterModel> Characters { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
//Account=>Many(Character)
modelBuilder.Entity<AccountModel>().HasMany(x => x.Characters)
.Withrequired(x => x.Account).HasForeignKey(x => x.AccountId);
base.OnModelCreating(modelBuilder);
}
}
[Table("Accounts")]
public class AccountModel
{
[Key]
public int Id { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public virtual ICollection<CharacterModel> Characters { get; set; }
}
[Table("Characters")]
public class CharacterModel
{
[Key]
public int Id { get; set; }
public virtual AccountModel Account { get; set; }
public int AccountId { get; set; }
public string Name { get; set; } = "";
}
private CharacterModel m_CharacterModel = new CharacterModel();
public AccountModel Account => m_CharacterModel.Account;
public void SavetoDB()
{
using (var db = new EllesiaDB())
{
var isUpdate = db.Characters.Where(x => x.Id == Id).Select(x=>x).Any();
db.Entry(m_CharacterModel).State = isUpdate ? EntityState.Modified : EntityState.Added;
db.Entry(Account).State = EntityState.Modified;
db.SaveChanges();
}
}
db 的工作方式如下。
并且在调用 SaveChanges()
之前也没有重复的记录。
首先将 Jane 保存在帐号 1 中
Accounts
Id | Username | Password
0 testid testpw
1 testid1 testpw1
Characters
Id | AccountId | Name
0 0 Parah
1 1 Jane
第二个在帐号1保存森
Accounts
Id | Username | Password
0 testid testpw
1 testid1 testpw1
Characters
Id | AccountId | Name
0 0 Parah
1 1 Jane
2 1 Mori
3 1 Jane
在帐号 1 中第三次保存 Rain
Accounts
Id | Username | Password
0 testid testpw
1 testid1 testpw1
Characters
Id | AccountId | Name
0 0 Parah
1 1 Jane
2 1 Mori
3 1 Jane
4 1 Rain
5 1 Jane
6 1 Mori
7 1 Jane
解决方法
由于 CharacterModel 是 AccountModel 的子代,如果启用了延迟加载,您可能会插入/更新 CharacterModel 两次。在插入/更新 AccountModel 之前,检查 AccountModel 中嵌套的 ICollection 字符。如果集合已填充,那是您的问题。禁用延迟加载或删除第二个插入/更新
,这 2 个模型是相互关联的,因此如果操作正确,您只需插入主模型而不是子模型。 但是您的主模型必须包含具有 .Include() 或启用延迟加载以保存链接的两个模型的子模型。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。