エラー:は失敗しました
Additional information: Attaching an entity of type 'Entities.Customer' 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 received database-generated key values. In this case use the 'Add' method or the 'Added' entity to track the graph and then set the state of non-new entities to 'Unchanged' or 'Modified' as appropriate.
マイコード:
public bool Update(TEntity entity)
{
bool result = false;
try
{
EntitySet.Attach(entity);
Context.Entry<TEntity>(entity).State = EntityState.Modified;
Context.SaveChanges();
result = true;
}
catch (Exception)
{
throw;
}
return result;
}
私が働いていた。この方法で、私は知らないので、それはもはや作品
...役立ちます。 'EntitySet'がどこで初期化されたのか、それが生涯であるのかは不明です。このエラーは通常、コンテキストの存続期間が長すぎることを示します。 –
本当に答えが必要な場合は、コメントと回答に有意義なフィードバックを与えるためにもっと努力する必要があります。 –