EF4.1を使用して、データベースからオブジェクトを削除しています。
public virtual void Delete(T entity)
{
_entities.CreateObjectSet<T>().DeleteObject(entity);
}
エラーが発生する:
The object cannot be deleted because it was not found in the ObjectStateManager
EF4.1を使用して、データベースからオブジェクトを削除しています。
public virtual void Delete(T entity)
{
_entities.CreateObjectSet<T>().DeleteObject(entity);
}
エラーが発生する:
The object cannot be deleted because it was not found in the ObjectStateManager