You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you're saving a tree of objects, it's currently add related objects on to the end of the transaction. This poses a problem if the object you're saving has a foreign key to the related object. In this case you have to manually save the related object before you save this object, which is not always correct (eg. 1 to 1 composition relationships). Instead the transaction committer should realise it needs to save the related object first instead of last.
Updated by Peter Wiles over 2 years ago
Some work done in rev 18257. Still to write some tests.
The text was updated successfully, but these errors were encountered:
Redmine Issue #1721
When you're saving a tree of objects, it's currently add related objects on to the end of the transaction. This poses a problem if the object you're saving has a foreign key to the related object. In this case you have to manually save the related object before you save this object, which is not always correct (eg. 1 to 1 composition relationships). Instead the transaction committer should realise it needs to save the related object first instead of last.
Updated by Peter Wiles over 2 years ago
Some work done in rev 18257. Still to write some tests.
The text was updated successfully, but these errors were encountered: