InvalidOperationException: Attaching an entity of type 'Imaging' 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
第二个update报错,造成原因2个update之间没有comit,所以之间先get下再update
imagingRepo.Update(image, true);
imagingRepo.Find(c => c.Id == image.Id)
imagingRepo.Update(image, true);