I use Unit of work pattern to commit all new, dirty, deleted entities to the DB (using a db_mapper).
Example of entities are: Student and Class
So Student->registerDirty() will add this entity to the dirty pool that will be saved to the DB when commit() will be called.
My problem is that Student can also hold collection of classes (Student->getClasses) and I am not sure how to integrate this into the unit of work pattern so it will only commit the new, updated or deleted.
Can any one recommend me how to integrate this?
1 Answer 1
Simple : the collection of Classes
will record what was added or removed and will commit those items accordingly.
-
So you suggest tracking changes inside the collection class? and then add the whole collection to the UoW. Then commit() will also loop on all 'dirty' collections?Michael Ben-Nes– Michael Ben-Nes2014年10月20日 13:33:39 +00:00Commented Oct 20, 2014 at 13:33
-
@michaelbn Yeah. That could work.Euphoric– Euphoric2014年10月20日 14:33:38 +00:00Commented Oct 20, 2014 at 14:33
Explore related questions
See similar questions with these tags.