Я новичок в MVC и хочу знать, как найти сущность объекта Table, используя where перед обновлением.Мой код выглядит следующим образом: -
public async Task<IHttpActionResult> PutEmployee(int id, Employee model)
{
Employee emp = db.Employee.Where(x => x.Id == id).FirstOrDefault();
if(emp!=null)
{
if(emp.ImagePath!=model.ImagePath)
{
//Code to move image
}
db.Entry(model).State = EntityState.Modified; //THIS IS WHERE IT THROWS ERROR
model.ImagePath = model.ImagePath.Replace("Temp/", "");
db.Entry(model).Property(x => x.IsDeleted).IsModified = false;
//Update changes using db.SaveChanges();
}
}
Код выдает ошибку на db.Entry(model).State = EntityState.Modified;
Attaching an entity of type 'MyProject.Models.Employee' 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
Цель состоит в том, чтобы проверить, существует ли Сотрудник с Id иесли он существует, проверьте, отличается ли текущее значение Employee.ImagePath от модели, переданной Пользователем.
Любая помощь будет оценена ...