up vote 0 down vote favorite
share [g+] share [fb]

When implementing the DataMapper pattern, should the class model that I implement in the DataMapper package more closely resemble the domain model or the data model?

link|improve this question
feedback

1 Answer

The whole point of a datamapper is to make the mapping transparent. So you class should be constructed on the terms of the object model. The gory details of mapping it back/forth from the storage (be it database or otherwise), resides in the mapper.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown