News Feed
Jobs Feed
Sections




News Archive
PHPMaster.com:
Implementing a Unit of Work - Handling Domain Objects through a Transactional Model
May 31, 2012 @ 09:53:03

In this new post to PHPMaster.com, Alejandro Gervasio looks at working with domain objects via a transactional system using the Unit of Work design pattern.

In fact, it's feasible to wrap collections of domain objects inside a fairly flexible business transactional model and just perform several database writes/deletes in one go, therefore avoiding having to break down the process into more atomic and expensive database calls, which always lead to the session-per-operation antipattern. Moreover, this transaction-based mechanism rests on the academic formalities of a design pattern commonly known as Unit of Work (UOW), and its implementation in several popular enterprise-level packages, such as Hibernate, is quite prolific and prosperous.

He shows how to implement the "Unit of Work" design pattern via a "UnitOfWorkInterface" and a "UnitOfWork" class that implements it. The class provides methods for things like entity handling (CRUD operations) and working with the data mapper for the transactions. He also includes the code to implement the data mapper, a layer on top of a PDO-based interface that also provides CRUD operations for the data records. From this, he defines a domain model, "User", and shows how to create a new user, register it with the UnitOfWork instance and do things like update a property, delete the record and pull out the user's information.

0 comments voice your opinion now!
unitofwork designpattern domain model tutorial


blog comments powered by Disqus

Similar Posts

IBM developerWorks: Generate Flash movies on the fly with PHP

Rob Allen's Blog: Using Action Helpers in Zend Framework

ProDevTips.com: Writing a CMS/Community with Smarty and the Zend Framework: Part 6

DevShed: Storing PHP Sessions in a Database

Carson McDonald's Blog: Google OAuth for Installed Apps PHP Example


Community Events











Don't see your event here?
Let us know!


introduction framework community release functional composer podcast database series testing development object language opinion interview tool conference zendframework2 example code

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework