工作单元更新问题:Entity Already another instance already is already being tracked
Unit of work Update problem: Entity Already another instance is already being tracked
我的 UOW 模式 实现有问题(我的 UOW 使用存储库模式)。我将尝试用两个简单的类来解释我的项目结构。
我有 Person 和 Car,(一对多 - 一对一)。
[Table("Person")]
public class Person
{
public int id{ get; set; }
public string name{ get; set; }
public IList<Car> cars_owned{ get; set; }
}
和
[Table("Car")]
public class Car
{
public int id{ get; set; }
public Person owner{ get; set; }
}
在我的 CarServiceImplementation 中,我想实现我的 AddUpdateCar() 以便在“人”不存在时添加或更新它。
这是我的实际实现:
public async Task<bool> addUpdateCar(AddUpdateCarModel model)
{
var car = await unitOfWork.CarRepository.GetByID(model.car_id);
var person = await unitOfWork.PersonRepository.GetByID(model.person.id);
if (person == null)
{
unitOfWork.PersonRepository.Insert(model.person);
}
else
{
unitOfWork.PersonRepository.Update(model.person);
}
car.owner = model.person;
unitOfWork.CarRepository.Update(car);
unitOfWork.Save();
return true;
}
This kind of impl says: 无法跟踪实体类型 'Person' 的实例,因为另一个实例具有与 {'id'} 相同的键值已被追踪。
我也尝试过不同的方法,但我遇到了其他问题。
该方法的正确实现方式是什么?
编辑 1:
public void Update(Person p)
{
context.Entry(p).State = EntityState.Modified;
}
和
public async Task<Person> GetByID(int id)
{
return await context.person.FindAsync(id);
}
由于您使用的是一个工作单元,最简单的方法是向 PersonRepository 添加一个新方法
public void InsertOrUpdate(Person p)
{
var existedPerson = GetByID(p.id);
if (existedPerson != null)
context.Entry(existedPerson).CurrentValues.SetValues(p);
else Insert(p);
}
我的 UOW 模式 实现有问题(我的 UOW 使用存储库模式)。我将尝试用两个简单的类来解释我的项目结构。 我有 Person 和 Car,(一对多 - 一对一)。
[Table("Person")]
public class Person
{
public int id{ get; set; }
public string name{ get; set; }
public IList<Car> cars_owned{ get; set; }
}
和
[Table("Car")]
public class Car
{
public int id{ get; set; }
public Person owner{ get; set; }
}
在我的 CarServiceImplementation 中,我想实现我的 AddUpdateCar() 以便在“人”不存在时添加或更新它。
这是我的实际实现:
public async Task<bool> addUpdateCar(AddUpdateCarModel model)
{
var car = await unitOfWork.CarRepository.GetByID(model.car_id);
var person = await unitOfWork.PersonRepository.GetByID(model.person.id);
if (person == null)
{
unitOfWork.PersonRepository.Insert(model.person);
}
else
{
unitOfWork.PersonRepository.Update(model.person);
}
car.owner = model.person;
unitOfWork.CarRepository.Update(car);
unitOfWork.Save();
return true;
}
This kind of impl says: 无法跟踪实体类型 'Person' 的实例,因为另一个实例具有与 {'id'} 相同的键值已被追踪。
我也尝试过不同的方法,但我遇到了其他问题。
该方法的正确实现方式是什么?
编辑 1:
public void Update(Person p)
{
context.Entry(p).State = EntityState.Modified;
}
和
public async Task<Person> GetByID(int id)
{
return await context.person.FindAsync(id);
}
由于您使用的是一个工作单元,最简单的方法是向 PersonRepository 添加一个新方法
public void InsertOrUpdate(Person p)
{
var existedPerson = GetByID(p.id);
if (existedPerson != null)
context.Entry(existedPerson).CurrentValues.SetValues(p);
else Insert(p);
}