Have an oData service that doesn’t support HTTP Merge for updates?
In the SaveChanges method of the DataServicesContent, add the parameter of SaveChangesOptions.ReplaceOnUpdate. This will replace all the values of the object until your service supports the friendlier merge option.
service.SaveChanges(SaveChangesOptions.ReplaceOnUpdate);
Advertisement