We've had quite a bit of discussion among our development group concerning whether the composition of entities should drive the database design, or should the database design drive the composition of the entities.

For those who have dealt with this, what has been your philosophy? Of course, not every entity maps 1:1 to a database table. But, for those that do, how have you handled this? IOW, which comes first, the database table and then a corresponding entity or an entity and then a database table to persist it?

Thanks.

link|improve this question

The same question: stackoverflow.com/questions/919880/… – Alex Kofman Feb 14 '10 at 12:46
feedback

3 Answers

up vote 4 down vote accepted

Your database will likely outlive whatever application you build today. All the performance and the scalability are going to be driven by your database schema. A sound database model is the foundation on which any application is built, and I'd say is where you should invest most effort in design and testing, for it will give the biggest benefits.

That being said, of course your application will prefer to manipulate domain entities, and manipulating unnatural entities driven by relational theory as opposed to business entities will just complicate things. My view is that is the role of ORM to match the two, as best as possible. But whenever inevitable conflicts appear, the right of way should be given by the driving factor of your performance and scalability: the database schema.

link|improve this answer
1  
@Remus - I think this is a very good perspective, and one I hadn't really thought about. The database, and the data in it, will likely outlive the initial applications that persist data to it. And it will potentially be used in many ways other than just the application that persists its data there. – Randy Minder Feb 14 '10 at 13:31
feedback

"entity and then a database table to persist it"

The Entity is what your program manipulates. That's the essence of what's being processed.

The database representation of that entity (like flat-file representations or GUI representations) are just handy representations of the entity.

You may have to think a bit about DB representation when it comes to certain things that relational databases are particularly bad at. Many-to-many relationships, for example, require introducing an extra table because the database has limitations that your object model doesn't have. You may have some entity design considerations to cope with this, but those a few and well-understood.

The database is less important.

The Entity definitions are central and essential.

link|improve this answer
Interesting perspective. Opinions on this appear to be all over the map. The father of ORM, Dr. Raymond Chen, upon which LLBLGen is built, takes the direct opposite view point. The database drives the entities. See: wagnerblog.com/2009/10/… – Randy Minder Feb 14 '10 at 2:59
@Randy Minder: It's simple logic. The application program actually does the actual work of the actual system. Everything else is presentation or persistence. The Chen references are very hard to track down. The previous wagnerblog entry references Peter Chen. Raymond Chen's blog doesn't mention ORM much. As a practical matter, the objects matter; the database is just persistence. – S.Lott Feb 14 '10 at 3:44
I also agree with this answer. Another important aspect is that database schema contains just some aspects related to expected entity operation, i.e. you anyway need additional annotations describing such things as as lazy loading, association behavior and so on. The fact that database usually lives longer than the application does not mean you must design it first, if the tool allows to simply generate it. So I also look on database as on particular storage representation. – Alex Yakunin Feb 14 '10 at 7:41
2  
The database is capable of more than persistence. Business rules can be implemented, the data can be constrained... The benefit means offloading the overhead from the application, which can't compete with database processing. The centralization of business rules to the database makes developing in other languages easier - there's less to re-invent. – OMG Ponies Feb 14 '10 at 8:22
@OMG Ponies: Some databases may be capable of having some application logic pushed into the database itself. Some argue that it's a good thing. It makes your application confusing (some parts are real code, some parts are stored procedures). It also makes things generally slower. Try a benchmark. Stored Procedures are not inherently fast; they're generally a wash. Do the design cleanly around model objects. Implement SP's only when you can prove that they improve performance. – S.Lott Feb 14 '10 at 11:53
show 9 more comments
feedback

I would say that you build your logical data model, and build the database and objects corresponding to that.

In fact, I would question the assumption that the database table and corresponding entities can't corresponding. I've rarely if ever seen a case where they really couldn't (if you are building an application from the ground up). Also, I would say that every time the object model and database schema diverged, it introduced a lot of problems.

I've come back around to the idea of that everything is simplier if you make them always match, however heretical that may be.

link|improve this answer
I've yet to see a direct translation of a link (many-to-many) table. Generally, they are implemented as Vectors/ArrayLists attributes of the main object rather than their own class. – OMG Ponies Feb 14 '10 at 2:50
@OMG Ponies: There's no direct translation of an association table because the association table isn't a first-class part of the Entity model. The extra link table is part of a standard hack to make a Relational Model represent more sophisticated object relationships. – S.Lott Feb 14 '10 at 2:51
@S.Lott: They are called "Relational" databases, not "object oriented". Link tables are not business entities, but mapping to a Vector/ArrayList/Collection/etc is still an object equivalent. – OMG Ponies Feb 14 '10 at 8:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.