Use an object relational mapper to build better software

Published July 10, 2010 by Toran Billups

I still remember the first thought that came into my head when I started using nhibernate last year 'great, now I won't have to write sql anymore'. I'll admit I wanted nothing to do with sql at the time because I was burned out after being fed a diet of 'stored procs for everything' my entire career. But dogma in any context is usually harmful.

I currently work with nhibernate everyday so on one hand you could say I got what I always wanted. But as it turns out, the real benefit of an ORM is that your team can write object oriented software with low friction. And the power behind object oriented software construction is that it allows for maximum flexibility throughout the development process.

Over the last few years I've found that I prefer doing complex domain logic inside objects rather than raw sql. This isn't to say that I'm totally against putting logic inside a stored procedure, but often the work I'm doing just feels more natural inside a rich domain model where I have all the benefits of Object Oriented Programming at my disposal.

  • Inheritance
  • Abstraction
  • Encapsulation
  • Polymorphism

So what am I talking about exactly? I've highlighted a few of the benefits below, all of which came from my experience working with complex software in the wild. But if you are still a skeptic after reading this post, just remember ... orm is the Vietnam of computer science

Model inheritance with low friction

One of the great things about doing object oriented programming is that you are empowered to model things that exist in the real world. And when you start modeling things you will eventually have the need for inheritance to represent some type of relationship in your domain model.

Of course if you don't use an ORM it's still possible to leverage inheritance. It just requires a lot more work on your part. While working on a project with a complex domain model a few years back, I did just that. To get inheritance working with my persistence model I had to build a base class per object hierarchy that represented the base repository to perform all database operations for a given type.

Another constraint on the project was that everything had to be done through a stored procedure. So inside each base repository I had to first call the base objects 'save' stored procedure, then through an abstract method call the inheriting objects repository 'save' method for the child object. If you are reading this and think to yourself 'that sounds easy enough' - it certainly took a lot of extra work on my part. In addition it made things more complex because of this very particular base class behavior that relied on the child repository to have a specific method defined. Remember why tight coupling and deep inheritance chaining was a 'bad' idea? Work with this structure a few times and you will find the switch to ORM a breath of fresh air.

So remember that part about low friction? When you use a good ORM this type of domain modeling isn't just easy, it's the reason these frameworks and tools exist today. What I enjoy about using nhibernate to model inheritance is that I have several options to choose from and each one is a snap to implement. If I want to have each child object persisted in a different table, no problem. If I want all the objects in a single table using a discriminator to define the object type, no problem. In the application you simply inherit from the parent object, make a small addition to the mapping file and you’re done. This was not only easy, but it made the code more intuitive for the next person who might be extending the software.

Working with collections feels more natural

When I navigate around my object model I find it very natural to do something like Customer.Orders when I want to see all the orders for a particular customer. With an ORM this is exactly how you would work with a collection out of the box.

Without an ORM I found a nice way to simulate this behavior, but it involved a strange dependency being added for each object that had a related collection. So I could still navigate using Customer.Orders but the trade off was that I had to dependency inject a service that knew how to load the related collection. So for testing simple logic inside my domain object I had to stub out a service dependency and it felt like a lot of extra work. Not to mention that it was a great deal of code that I was now responsible for maintaining.

One characteristic of great software is loose coupling. So when you are forced to add a dependency just to get at another related object or collection it raises the complexity and tightly couples your once 'simple' object to something that just isn't necessary when you have an ORM.

You will have less friction doing incremental development

When I'm designing a piece of software I want the ability to make small incremental changes. This allows me to change the software as I learn about the business requirements. For example, if I want to change the name of a property to better reveal intent it should be a simple rename with resharper or some other refactoring tool. I shouldn't have to worry about the database in this context directly.

If a small change like this takes a great deal of effort the development team will simply stop making incremental improvements to it. So as they learn about a more appropriate name for property xyz they will hesitate to make the change because of the friction involved. And over time if your team isn't improving the software, it's not long before the big rewrite.

Testing is both simple and cheap with objects

The type of testing I'm talking about here is unit testing. If I have a rule in my domain model like 'a user can't see a button if the invoice total is less than $25' it's easy to test. I simply create a user object in memory, set the invoice total to something less than $25, verify the button is missing and I'm done. With a database I would have to create all the dependencies needed to satisfy referential integrity checks. This is what a database is good for, but in my domain model I just want to verify a business rule. I'm not trying to verify any persistence rules that might occur in the database.

Another great advantage with testing in memory is that tests run fast. When tests run fast the development team is much more likely to run them. They will also run them more frequently so bugs will be found quicker, saving time and money. If you have to run all your tests against a shared resource like the database or file system, it's likely that they will run slower and the team will eventually stop running them with each small change. Making even the smallest bug a real pain to find as the codebase grows in size.

Allow your team to embrace good software practices

One of the first things a young developer learns about when they start doing software development in the real world is that separation of concerns is a good idea. The general idea is that you don't mix different concerns inside classes or methods because we as software developers can only hold so much in our brain at one time. Beyond about 7 things we start to lose track and make mistakes.

One great example of this is using a stored procedure for business specific logic. Inside the SQL (persistence code) you have a bunch of if statements and other logic. When I'm using a stored procedure it should do only persistence related work. The same goes for a business object that does a lot of sql like logic. I want to think about the conditionals that make up the business rules separate from the logic required to persist those objects in the database.

When using an ORM the objects you write are 100% infrastructure free. This enables a developer who is fixing a logic bug to focus on the object without having to worry about how it’s being persisted. When you first switch to this model it feels strange because the majority of your time previously was committed to persistence coding. But after a week of working with objects that don’t have persistence code scattered about you feel more productive and generally make less mistakes because each object now has just one responsibility.

Writing elegant code is the default

This point follows the previous because when you start following good development practices the code you write is easier to read. I've done my share of write-once software development and have since learned that it's very expensive to develop software for a year or more that just can't be maintained (even by the original developer).

By definition elegant code is something that just flows from the code to your brain without a lot of 'huh?' / 'what now?' like moments. It should express not just the intent of the software but also the context in which it was written. If you can produce this type of software, and design it test-first, the next development team will be able to consume new requirements from the business and turn out results at nearly the same level of productivity that you had writing the first version.

When you are using an ORM you don't have the need for a lot of what I call 'noise' code. This type of code just clutters up the system and makes it harder to read. You will also find that having an ORM in place can reduce the number of lines that your team is responsible for maintaining.

I found this out first hand when I refactored an older application built with ado.net to use nhibernate instead. The code base went from 10K lines of code to around 5500. This meant I could make changes quicker and find bugs faster because I now had only the necessary code needed to provide business value.

Conclusion

So if you started using an ORM this year for data access alone, remember that the true power is found in object oriented software development. Using an ORM will allow your team to take advantage of this development paradigm with a much lower cost to productivity.


Buy Me a Coffee

Twitter / Github / Email