Samples for Domain Driven Design (esp .NET focused)

后端 未结 9 546
说谎
说谎 2021-01-30 12:19

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 proj

相关标签:
9条回答
  • 2021-01-30 12:23

    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.

    0 讨论(0)
  • 2021-01-30 12:27

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

    • A Class Isn't Always a Noun
    • DDD in the small (php)
    • Specification pattern example in c#
    • An Order Processing Pipeline in ASP.NET MVC
    0 讨论(0)
  • 2021-01-30 12:28

    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.

    0 讨论(0)
  • 2021-01-30 12:33

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

    • .NET Domain-Driven Design with C#: Problem-Design-Solution
    • Domain Driven Design (.NET) Example Application
    • StoreDDD
    0 讨论(0)
  • 2021-01-30 12:33

    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.

    0 讨论(0)
  • 2021-01-30 12:38

    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

    0 讨论(0)
提交回复
热议问题