Posts
702
Comments
580
Trackbacks
1
DDD-Lite and Data Access: One way of doing it

I’m not sure who came up with the term ‘DDD-lite’ or if it even makes sense to ask the question, but I *think* I first saw it being used by Colin Jack.  In any event, I’m going to describe what I mean by it, and how I’m using it in a way that I find comfortable along with a certain way of doing data access.

As I’m using it in this post (I don’t think there is an official definition), ‘DDD-lite’ refers to the use of certain patterns within your code.  Full blown DDD requires an extensive collaboration between business users and developers and everyone in between (though there are many debates about this), and so DDD-lite is more of a programming technique (or set of them).  As I use it (and I’m talking strictly about web forms here), it involves:

  • MVP/C at the presentation layer (technically, only the ‘V’ is truly the presentation layer, but go with me here)
    • V – the view.  I always create views at the user control level, and the aspx page just combines them.
    • M – the model.  This gets the…stuff (I want to say ‘data’ but it doesn’t directly get data in a database sense) that the view needs to display, as well as act on the…stuff when it changes in the view.
    • P – the presenter.  This co-ordinates the interaction between the M and the V.  I like my views to be a bit more robust than others (so the presenter may pass some stuff to the view and the view itself will do some formatting, etc.).  I also tend to have the presenter constructed with the view passed in, and then wire up the presenter to the view’s events, then have the view fire off events, blah blah blah.
    • C – the controller.  In Asp.NET world, this could mean Monorail and other things, but I’m only considering Asp.NET MVC here.  Since routing scares me (the combination of strings and order of precedence is something I will hork up massively the first twenty times I do it) and it isn’t officially released yet, I’m staying off it for now
  • Facade/Services
    • I’m actually inconsistent here.  I think I prefer that the M call into a facade, which then calls into a service, but I sometimes shortcut this.  What’s the difference?  Not sure in terms of importance, but something like this: suppose the standard eCommerce site.  I might have a facade layer for the shopping experience (adding to cart, applying discounts if I’m a logged in user with certain blah blah blah) and a different one for the ordering experience, for instance.  And the facade is a cover/combiner of various services.  Or, I might just call into the services directly.  I go back and forth between the two, and am not sure if it is because of whimsy or if I can’t tell if one is really better than the other or laziness or stupidity or what.
  • Repositories
    • Here’s where the data stuff with the database happens.  But there’s a ‘complication’ (it isn’t really complicated, but just how I do it).
  • Domain Objects/DTO/Data Objects/Mapping
    • Domain Objects: the objects that actually do all the stuff and have all (or most, or at least some) of the behavior.  These objects are basically POCO, and these are heavily tested (when I don’t cheat) since these are the objects that do the stuff that matters.
    • DTO: the objects that are used to populate the presentation layer, and pass data back from the presentation layer.
    • Data Objects: the data access stuff, more below.
    • Mapping: obviously, two types:
      • DTO-Domain
      • Domain-Data
      • One way to think about this is a parallel between the other layers
        • DTO: maps to the presentation layer
        • Domain: maps to the facade/services layer
        • Data: maps to the repository layer

 

Okay, so the data access stuff is pretty straightforward, and I’ll use LINQ to SQL as the example.  Can you use L2S as your domain model?  I don’t know.  Someone smart enough could probably figure it out.  But, I’m not that smart and I don’t want to worry about it.  So, I create Data Objects the standard way.  Drag and drop the fu&*er.  Or use SqlMetal.  But, in any case, I don’t worry (that much) about how L2S does what it does.  I don’t want to TDD this area, unless I have edge-cases.  If i’m using IRepository, I don’t want to test every instance of T here.  It is akin to me of testing if int works in the CLR.  You assume the framework does what it does properly.  Similarly, I assume that once you get the basic case of IRepository working, it will work across the board.

I do want to test the mapping.  Since I may refactor my domain objects, I need to know that the mapping between my domain objects and my data objects continues to work.  This allows me to continually refactor my domain and then test the mappings to know they are in sync, without having to test *everything* down the stack.

An obvious question is whether or not this whole thing is a good idea.  Could I improve the different layers and how they interact?  Obviously there are times when I might say yes to this question, but I judge the ‘is it a good idea’ question by how easy it is for me to implement functionality. And because I have a comfort level with the way I’m doing it now, I go with it.

The bottom line is that the way I’m doing it now works efficiently for me.  I’m used to it.  The places or junction points where I am not so sure about, I build tests.  The rest, I trust that the framework will test for me.

posted on Tuesday, November 25, 2008 9:14 PM
Comments
Gravatar
# re: DDD-Lite and Data Access: One way of doing it
Victor Kornov
11/26/2008 1:30 PM
That's pretty much how I do it too :) THe only difference - no Data Objects. I use mapping atributes on my Domain objects. That's simpler. One Pro of your way (btw, Rob Conery does the same in his MVC eCommerce) - you can use custom value objects or any other thing L2S mappings don't support.
Gravatar
# re: DDD-Lite and Data Access: One way of doing it
jdn
11/26/2008 6:06 PM


I have been influenced by Conery's project. There's an increase in the amount of mapping you have to do, but I think it offers some flexibility
Gravatar
# re: DDD-Lite and Data Access: One way of doing it
Erik
12/9/2008 1:47 PM
I've been on the fence re Conery's way of using L2S - even moreso now that L2S is being sidelined by Microsoft. I like his means, but I'm definitely not a big fan of right-to-left mapping code.
Gravatar
# re: DDD-Lite and Data Access: One way of doing it
jdn
12/9/2008 7:42 PM


I think Conery's way is somewhat independent of L2S, it's just easy to use it because he has a reference implementation (though needless to say I don't quite do it exactly as he does it...what's the point of being a programmer if you can't change things?.

I'm not doing the mapping literally from data to domain, that is, I don't create IMapper classes like I do to get from domain to presentation DTO. Instead, I return the domain objects from the IRepository classes ala Conery.

And I'm not doing it to make it easier to rip and replace the ORM (though theoretically, it could make it easier). Instead, I'm doing it because I think Active Record is a perfectly acceptable and proven data persistence pattern (and I'm familiar and comfortable with it) but I don't like Active Record-ish domain objects. I want to be able to create my entities and value objects separately, test them out the wazzo, and then map them back when and where needed at a lower level.

I want to add messaging and aspects to the picture at some point, but I don't think I'm competent/experienced/whatever enough to say anything worthwhile about it yet.
Gravatar
# re: DDD-Lite and Data Access: One way of doing it
Alex
12/11/2008 7:17 AM
It will work with linq2sql, but i fell bad doing the load of pocos from linq2sql generated classes. Nhibernate makes more sense here.

Post Comment

Title *
Name *
Email
Url
Comment *  
Please add 2 and 8 and type the answer here: