views:

1905

answers:

8

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?

+2  A: 

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.

Don
+6  A: 

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

slf
+1  A: 

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/

Stefan Moser
+2  A: 

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

Michael Valenty
+1  A: 

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.

+4  A: 

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

Keith Bloom
Ooohh... This is something neat. Thanks. :)
Arnis L.
+1  A: 

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.

Szymon Pobiega
A: 

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.

Dennis Doomen