我是否可以执行类似下面的操作(不起作用),而无需显式设置对象的每个属性. Product是由表单提交中的默认模型绑定器创建的对象,而ProductInDb是我希望覆盖/更新的上下文/数据库中的对象. ProductID主键在两者上都相同.
var ProductInDb = context.Products.FirstOrDefault(x => x.ProductID == product.ProductID); ProductInDb = product; context.SaveChanges();
解决方法
您可以附加现有产品并将其状态设置为已修改.
如果您使用的是DbContext API
context.Products.Attach(product); context.Entry(product).State = EntityState.Modified; context.SaveChanges();
对于ObjectContext
context.Products.Attach(product); context.ObjectStateManager.ChangeObjectState(product,EntityState.Modified); context.SaveChanges();