I noticed sometimes with my parent/child objects, or many-to-many relationships, I need to call either SaveOrUpdate, or Merge. Usually, when I need to call SaveOrUpdate, the exception I get on calling Merge has to do with transient objects not being saved first... Please explain the difference between the two.
|
feedback
|
|
This is from section 10.7. Automatic state detection of the Hibernate Reference Documentation:
You should use Merge() if you are trying to update objects that were at one point detached from the session, especially if there might be persistent instances of those objects currently associated with the session. Otherwise, using SaveOrUpdate() in that case would result in an exception. | |||||||||||||||
feedback
|
|
As I understand it, Merge will take an object that may not be associated with the current session, and copy its state (property values, etc.) to an object that is associated with the current session (with the same PK value/identifier, of course). SaveOrUpdate will call Save or Update on your session, based on a given object's identity value. | |||
|
feedback
|
|
| ||||
feedback
|