• Attaching an entity of type 'xxx' failed because another entity of the same type already has the same primary key value.


    问题的详细描述:

    Attaching an entity of type 'xxxxx' failed because another entity of the same type already has the same primary key value. This can happen when using the 'Attach' method or setting the state of an entity to 'Unchanged' or 'Modified' if any entities in the graph have conflicting key values. This may be because some entities are new and have not yet received database-generated key values. In this case use the 'Add' method or the 'Added' entity state to track the graph and then set the state of non-new entities to 'Unchanged' or 'Modified' as appropriate.

    解决方案:

    public void Update(T entity)
    {
        if (entity == null)
        {
            throw new ArgumentException("entity");
        }
        if (this.Entry(entity).State == EntityState.Detached)
        {
            HandleDetached(entity);
        }
        this.Table.Attach(entity);
        this.Entry(entity).State = EntityState.Modified;
        this.SaveChanges();
    }
    
    private bool HandleDetached(T entity)
    {
        var objectContext = ((IObjectContextAdapter)this).ObjectContext;
        var entitySet = objectContext.CreateObjectSet<T>();
        var entityKey = objectContext.CreateEntityKey(entitySet.EntitySet.Name, entity);
        object foundSet;
        bool exists = objectContext.TryGetObjectByKey(entityKey, out foundSet);
        if (exists)
        {
            objectContext.Detach(foundSet);
        }
        return exists;
    }
  • 相关阅读:
    linux 内核升级4.19
    监管对保险页面的要求
    软件测试-测试可交付成果
    软件测试架构思想
    dockerfile
    转载:.NET Core 图片操作在 Linux/Docker 下的坑
    docker build速度过慢问题
    .net 5 发布到 docker 或 docker 镜像方法
    Centos 安装 docker 教程
    DQL、DML、DDL、DCL全名是啥?
  • 原文地址:https://www.cnblogs.com/gonghui2016/p/11957018.html
Copyright © 2020-2023  润新知