当前位置:   article > 正文

已解决:‘DbContextOptionsBuilder.EnableSensitiveDataLogging‘ to see the conflicting key values.

已解决:‘DbContextOptionsBuilder.EnableSensitiveDataLogging‘ to see the conflicting key values.

这个错误消息通常出现在 Entity Framework Core(EF Core)中,当你尝试将一个实体附加到上下文(DbContext)时,EF Core 发现另一个相同主键的实体实例已经在上下文中被追踪。EF Core 不允许在同一上下文中追踪两个具有相同主键的实体实例,因为这会导致数据不一致的问题。

在这里插入图片描述

DBContext 是一个实现上述功能,自然类体积较大,截取部分方法展示如下:
在这里插入图片描述

解决方案

这里有几个常见的解决方法:

1. 避免重复追踪

确保在同一上下文中只追踪一个具有相同主键的实体。如果你需要更新或操作实体,请尝试从上下文中获取现有实体,然后对其进行修改,而不是创建新的实例。

示例代码

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();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
2. Detach 实体

如果你需要将一个实体附加到上下文中,而上下文已经追踪了一个具有相同主键的实体,你可以手动从上下文中分离现有实体。

示例代码

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();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
3. 确保数据一致性

如果你从不同的上下文实例中获取实体,确保在同一上下文中操作这些实体,以避免冲突。

4. 使用 AsNoTracking 查询

如果你只是读取数据而不打算修改它,可以使用 AsNoTracking 来禁用对实体的追踪,从而避免此类问题。

示例代码

using (var context = new YourDbContext())
{
    var customers = context.Customers.AsNoTracking().ToList();
}
  • 1
  • 2
  • 3
  • 4
5. 启用敏感数据日志

如果你不确定哪个实体导致了冲突,可以启用 EF Core 的敏感数据日志记录来获取更多信息。

示例代码

var optionsBuilder = new DbContextOptionsBuilder<YourDbContext>();
optionsBuilder.EnableSensitiveDataLogging();

using (var context = new YourDbContext(optionsBuilder.Options))
{
    // Your code here
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

启用敏感数据日志记录后,你可以在控制台输出中查看冲突的键值,从而更好地理解问题的来源。

通过这些方法,你应该能够解决或避免 The instance of entity type 'CustomerEntity' cannot be tracked because another instance with the same key value for {'Id'} is already being tracked 错误。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/922036
推荐阅读
相关标签
  

闽ICP备14008679号