Ok so I've ordered Applying Domain-Driven Design and Patterns: Using .Net, but while I wait for it to arrive I'm looking at starting to apply the techniques in my current project. I really grasp the concepts quite well now, but when I try to apply them I get caught up with the execution and end up leaking my respsonsibilities across the various projects. As such I'm looking for resources out there that can guide me in the right direction, especially sample projects with actual code that I can work against. I remember a sample site out there in the Alt.Net world that had a real working project that people could browse but can't seem to find it? Does anyone out there have that link, or any other links they could share??

Edit: I have since found this sample application from the DomainDrivenDesign.org site (although it is Java based) as well as the example outlined below.

I am still looking for the Alt.Net sample application if anyone knows where to find it?

link|improve this question

76% accept rate
feedback

10 Answers

up vote 8 down vote accepted

The following CodePlex projects seem to be right up your ally:

link|improve this answer
feedback

Mark Nijhof made a great .Net example app using the CQRS pattern which is a hot implementation of DDD. You can read all about it on Marks blog

link|improve this answer
Ooohh... This is something neat. Thanks. :) – Arnis L. Feb 28 '10 at 13:58
feedback

I've written a few articles with mostly c# examples on implementing DDD patterns in real applications.

link|improve this answer
feedback

Habanero is a developement framework that implements Domain Driven Design Principles it is an excellent source of material and an open source community dedicated to domain driven design in .Net.

link|improve this answer
feedback

I found Steve Sanderson's post Behaviour Driven Development (BDD) with SpecFlow and ASP.Net MVC and it's accompanying example project (Guestbook) invaluable in making this step from theory to practice. I must admit I was able to re-use a lot of his code in my own application without too much modification from what was originally intended as a simplified example.

He uses WatiN (a tool for automating browser tests) to to do full acceptance testing from a user perspective. His example also includes a typical CRUD feature (create/update forms etc.), which is something so many examples avoid, even though it must be one of the most common things all of us do.

Sanderson's one of those people who can break complicated ideas down into clearly understandable descriptions, and has a very pragmatic view on development practices.

link|improve this answer
He does doesn't he :) – nick Jan 19 '11 at 20:36
feedback

The author of Domain-Driven Design has created a project Time & Money as a showcase for the concepts described in his book. This is more than just a 'toy' project that provides some sample code to accompany the book, it's intended to be a production-ready replacement for the concepts of time and money, which are rather poorly implemented in the core Java libraries.

link|improve this answer
feedback

Eric Evans and a Swedish consulting company have released a sample application based on the shipping example that Eric uses throughout the book. It's in Java, but the concepts are well documented on the project page.

http://dddsample.sourceforge.net/

link|improve this answer
feedback

You can take a look at my DDDSample.Net. It demonstrates not only classic DDD, but also CQRS approach using two relational stores and using Event Sourcing approach.

link|improve this answer
feedback

As part of a talk I have done at a Dutch .NET community event, I have started implementing a full-blown Silverlight 4 example using CQRS and Event Sourcing. It relies heavily on one of the most serious open-source CQRS initiatives, NCQRS. You can find its corresponding CodePlex site here.

link|improve this answer
feedback

Checkout this project by Ian Cooper on github

https://github.com/superlogical/Paramore/blob/master/Ignorance/theRules.txt

Well more guidelines than rules... From Object Calisthenitics in Thoughtworks Anthology ...And then modified for the sanity (see the a or b...)

  • Only use one level of indentation per method
  • Don't use the else keyword
  • Wrap all primitives and strings
  • Use only one dot per line
  • Unless explicitly using a fluent interface over an OO model
  • Don't abbreviate
  • Keep all entities small (no more than 50 lines)
  • Don't use a class with more than two instance variables
  • Use first class collections
  • Don't use any getters/setters/properties
  • On a class, it's fine to do this with a data object, such as a DTO
  • Don't give a data object behavior
  • But don't build an aneamic model, if a data object needs behavior, make a class
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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