zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    多线程创建方式四种

    归并排序
    Spark调优之--资源调优、并行度调优
    多线程中的上下文切换
    守护线程和本地线程
    线程和进程的区别
    3. 无重复字符的最长子串
    [蓝桥杯][历届试题]连号区间数
    [蓝桥杯][历届试题]蚂蚁感冒
  • 原文地址:https://www.cnblogs.com/gonghui2016/p/11957018.html
Copyright © 2011-2022 走看看