Domain Driven Design : Querying Domain Objects

After having discussed about object creation in the previous post, I would like to discuss the challenges of querying objects in a domain model.

There is a well designed domain model with a rich set of associations between objects. How to get to a particular entity or value object inside the domain model? Since the domain model is well connected, if you have a reference to a root entity, you can get to the other members to which this root is associated. But, how to get to this root? Well, we can have a global root which contains the collections of all the root of the entities. For example, in a sales order application, you can have a global root containing the collection of order and customer objects.

One drawback of the above solution is that it will perform badly in a distributed system. For example, when a client asks the global root to return the list of customers, and there are millions of customers, we have to do a database query and it will return millions of records. This will cause a lot of data transfer on the network. With multiple clients, this solutions would not work at all.

In most situations, you would need only a subset of customers which meet a particular set of conditions. So, what are the options that we have to return a subset of customers to the client in a way which performs well and does swamp the domain model with the complexity of the query logic. The options that we have are

  • Using a SQL query
  • Query Objects
  • Repository Objects

Let’s look at these options in detail.

Using an SQL query

An SQL query is a powerful tool to get what we want from the database. Using an SQL query involves processing the resultset returned from the database and converting into object format. This data access code if coded inside the domain objects can result in obfuscating the domain model. Also, there is a tight coupling between domain objects and database.

This problem of translating between object world and the database world can partially be solved by using metadata mapping. Meta data mapping reduces the overhead of translating between java objects and sql resultsets. But, the problem of separating data access code from the domain model is still there if sql queries are employed.

Query Objects

A Query Object is a structure of objects that can form itself into a SQL query. You can create this query by referring to classes and fields rather than tables and columns. In this way those who write the queries can do so independently of the database schema and changes to the schema can be localized in a single place. A Query object is based on Interpreter pattern. Hibernate, a leading framework for Object Relational mapping provides API for query Objects. Following is an example of data Access Code written using query objects

List cats = sess.createCriteria(Cat.class)
    .add( Restrictions.like("name", "Fritz%") )
    .add( Restrictions.between("weight", minWeight, maxWeight) )
    .list();

The advantages of Query Object come with more sophisticated needs: keeping database schemas encapsulated, supporting multiple databases, supporting multiple schemas, and optimizing to avoid multiple queries. Some projects with a particularly sophisticated data source team might want to build these capabilities themselves, but most people who use Query Object do so with a tool. There are a lot of tools available like Hibernate, Toplink, iBatis which provide APIs for creating queries using object oriented code.

Repository Objects

Query Objects help in cleaning up the domain model from the data access code. But, in most scenarios, it is advisable to separate the data access code from the domain model into a separate layer. A Repository mediates between the domain and data mapping layers, acting like an in-memory domain object collection.

Repository presents a simple interface. Clients create a criteria object specifying the characteristics of the objects they want returned from a query. For example, to find person objects by name we first create a criteria object, setting each individual criterion like so: criteria.equals(Person.LAST_NAME, “Gupta”), and criteria.like(Person.FIRST_NAME, “V”). Then we invoke repository.matching(criteria) to return a list of domain objects representing people with the last name Gupta and a first name starting with V. Under the covers, Repository combines Metadata Mapping with a Query Object to automatically generate SQL code from the criteria. An example involving repository is shown below

public class Person { //domain object
   public List dependents() {
      return Registry.personRepository().dependentsOf(this);
   }
}

public class PersonRepository extends Repository {
   public List dependentsOf(aPerson) {
      Criteria criteria = new Criteria();
      criteria.equal(Person.parent, aPerson);
      return matching(criteria);
   }
}

abstract class Repository {
   private RepositoryStrategy strategy;
   protected List matching(aCriteria) {
      return strategy.matching(aCriteria);
   }
}

public class RelationalStrategy implements RepositoryStrategy {
   protected List matching(Criteria criteria) {
      Query query = new Query(myDomainObjectClass())
      query.addCriteria(criteria);
      return query.execute();
   }
}

Because Repository’s interface shields the domain layer from awareness of the data source, we can refactor the implementation of the querying code inside the Repository without changing any calls from clients. Indeed, the domain code needn’t care about the source or destination of domain objects. In we want to change the data to be picked up from the memory instead of the database, we can simply change the RepositoryStrategy from relational to in memory by creating an in memory relational strategy.

After having discussed about various methods of querying the domain objects, we can conclude that on a large project with complex domain we should not use queries directly from the domain model. Now, as far as query objects and repositories are concerned, I think they both resolve a separate problem. Query Objects help in abstracting the data access code in an object oriented way, whereas, Repository is used for separating the data access code from the query objects and providing for additional sophistication, id required. Moreover, if you are using sophisticated tools like Hibernate, they provide the APIs which implement these patterns.

So far in this series, we have discussed the basics of domain driven design. In the next part of this series, I will discuss about Specification pattern.

4 thoughts on “Domain Driven Design : Querying Domain Objects

  1. Pingback: Domain Driven Design : Making Implicit concepts Explicit « Connecting to the World

  2. Christian Posta

    Hi,

    I would like to comment that the context from which one would like to query the domain objects, or the purpose for querying, isn’t clear in your post.

    For one, if the purpose of querying domain objects is for a presentation layer, I subscribe to the architectural query-command-separation principle I first learned through Greg Young et. al. http://codebetter.com/blogs/gregyoung/archive/2009/08/13/command-query-separation.aspx

    This approach separates out the domain model from any reporting, presenting, UI concerns and goes directly to a database (or other means of querying). http://www.infoq.com/presentations/greg-young-unshackle-qcon08

    If the type of querying originates from the domain model itself, you’ve covered the repository layer which is the appropriate place to retrieve domain objects. A restrained, thought-filled way of using Query objects can be incorporated with the repository seam/layer as necessary.

    Thanks for your post.

    Reply
    1. Vikas Gupta Post author

      HI Christian,

      Thanks for your interest.
      The purpose of this post was to make users aware about the ways u can query the domain objects and their impact on the overall domain model.
      As far as Command Query Separation is concerned, I have to explore it more to comment about it.

      Thanks,
      Vikas

      Reply
  3. Pingback: Swarm of XeBees » Domain Driven Design : Specification Pattern

Leave a comment