赞
踩
这个错误消息通常出现在 Entity Framework Core(EF Core)中,当你尝试将一个实体附加到上下文(DbContext
)时,EF Core 发现另一个相同主键的实体实例已经在上下文中被追踪。EF Core 不允许在同一上下文中追踪两个具有相同主键的实体实例,因为这会导致数据不一致的问题。
DBContext 是一个实现上述功能,自然类体积较大,截取部分方法展示如下:
这里有几个常见的解决方法:
确保在同一上下文中只追踪一个具有相同主键的实体。如果你需要更新或操作实体,请尝试从上下文中获取现有实体,然后对其进行修改,而不是创建新的实例。
示例代码:
using (var context = new YourDbContext()) { // 获取已有实体 var existingEntity = context.Customers.Find(customer.Id); if (existingEntity != null) { // 更新属性 existingEntity.Name = customer.Name; // 保存更改 context.SaveChanges(); } else { // 添加新实体 context.Customers.Add(customer); context.SaveChanges(); } }
如果你需要将一个实体附加到上下文中,而上下文已经追踪了一个具有相同主键的实体,你可以手动从上下文中分离现有实体。
示例代码:
using (var context = new YourDbContext())
{
var local = context.Customers.Local.FirstOrDefault(e => e.Id == customer.Id);
if (local != null)
{
// 移除跟踪的实体
context.Entry(local).State = EntityState.Detached;
}
// 现在你可以添加新的实体
context.Customers.Add(customer);
context.SaveChanges();
}
如果你从不同的上下文实例中获取实体,确保在同一上下文中操作这些实体,以避免冲突。
AsNoTracking
查询如果你只是读取数据而不打算修改它,可以使用 AsNoTracking
来禁用对实体的追踪,从而避免此类问题。
示例代码:
using (var context = new YourDbContext())
{
var customers = context.Customers.AsNoTracking().ToList();
}
如果你不确定哪个实体导致了冲突,可以启用 EF Core 的敏感数据日志记录来获取更多信息。
示例代码:
var optionsBuilder = new DbContextOptionsBuilder<YourDbContext>();
optionsBuilder.EnableSensitiveDataLogging();
using (var context = new YourDbContext(optionsBuilder.Options))
{
// Your code here
}
启用敏感数据日志记录后,你可以在控制台输出中查看冲突的键值,从而更好地理解问题的来源。
通过这些方法,你应该能够解决或避免 The instance of entity type 'CustomerEntity' cannot be tracked because another instance with the same key value for {'Id'} is already being tracked
错误。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。