Domain-driven design (DDD) is an approach to developing software for complex needs by deeply connecting the implementation to an evolving model of the core business concepts.

learn more… | top users | synonyms (1)

0
votes
1answer
23 views

Domain driven design child entities change tracking

Im having some difficulty figuring out how will the Aggregate root track changes on child entities let say I have an aggregate: Order (root) OrderLineItem with the Order class being the aggregate ...
0
votes
1answer
23 views

Detach event listeners for domain events? or how to stop executing otherwise required post events on specific use-cases

So let's take the usual Order example. Assuming a rich domain model we have an Order.place() call. It seems the way to do additional tasks related to this action these days point to domain events. So ...
1
vote
1answer
50 views

DDD: Pattern for submitting and approving contracts

I'm working on an app where the following requirements exist: A user submits some data in a form and this gets persisted as a "Draft Copy." On the other end, an approver reads it and takes some ...
1
vote
1answer
42 views

What is an anemic model?

I've been searching around for a while trying to understand just what this is, but I'm not really clear. What is an anemic model, and what is it an alternative to?
0
votes
1answer
60 views

Synchronizing Query-side Data in CQRS - won't there still be contention?

I have a general question about the CQRS paradigm in general. I understand that a CommandBus and EventBus will decouple the domain model from our Query-side datastore, the merits of eventual ...
1
vote
4answers
43 views

How do I populate my domain model from my repository if my properties have private setters?

In the domain core of my application, I have an Order object. It has private setters, since those properties should not be modified willy-nilly, but only within the context of performing one of the ...
2
votes
3answers
25 views

How to use external value object library in Domain Layer

I would like to have one or more libraries of reusable classes that are basically value objects, such as Address, PhoneNumber, EmailAdress, containing mostly properties and a few supporting methods. ...
0
votes
2answers
55 views

RDM vs ADM (yet again) or where is there a middle ground?

After spending endless hours on the web (and in books) trying to come to a conclusion about this subject, looking through many people's point of views, and different aspects trying to weight pros and ...
1
vote
1answer
26 views

Getting list of heavy aggregates

Suppose we have such an aggregate in our domain that it is stored in table hierarchy three levels deep. Let's denote domain objects as Order-OrderItems-ItemAttributes. Let's also assume that we use ...
0
votes
1answer
30 views

How to store references to arbitrary entities in RavenDB?

I have the need to store arbitrary references to entities within my Raven Database. Sometimes the entity is an aggregate root (see Events below) and other times it is a value entity (see Sessions ...
1
vote
0answers
20 views

Does each object in the design play a conceptual role described in a domain model?

Eric Evan's DDD book, pg. 49: Setting aside purely technical issues, each object in the design plays a conceptual role described in domain model. I think what author is saying is that all ...
0
votes
1answer
32 views

State pattern in the domain could affect service layer badly

We have N-layered application which we try to design with DDD in mind. The app is exposed as a REST service. We have a domain entity that utilizes state pattern. The interface for state is like this ...
0
votes
3answers
36 views

Entities and services

Lets take a scenario where an Order is dispatched and optionally a mail can be sent to the customer depending on an attribute in the Order class. The functionality to send an email is in a service ...
1
vote
2answers
58 views

How do I handle persistence and unit of work in DDD using Entity Framework?

I'm a little overwhelmed with all of the information on DDD, unit of work, domain services, app services, etc. I'm trying to figure out how a persistence-ignorant domain model ultimately gets ...
0
votes
1answer
34 views

DDD: Where to Place Domain Events

I just read Vernon's book "Implementing Domain-Driven Design". What I couldn't find is where to put your Domain Event's classes. In the same namespace as your aggregates? In a sub-module like ...
0
votes
1answer
25 views

Sub-Domain with multiple bounded context and project structure

I have started reading few chapters of the blue book and have read the first three chapters of red book (Implementing Domain Driven Design). I have a two questions: (1) Can a sub-domain have more ...
0
votes
0answers
6 views

Is Domain Entity violating Single Responsibility Principle? [migrated]

Single responsibility ( reason to change ) of an entity should be to uniquely identify itself, in other words, its responsibility is to be findable. Eric Evan's DDD book, pg. 93: most basic ...
0
votes
3answers
82 views

Event versioning in CQRS

We are at a point in our development cycle (asp.net mvc applciation), where we need to introduce changes to our existing commands and events (say adding/removing a few properties etc). I have been ...
0
votes
2answers
85 views

Unit of Work, Entity Framework and Core Services

I know similar questions have been discussed several times, but my problem is slightly different, I guess. I'm experimenting with application architecture based on Domain Driven Design, using ...
0
votes
2answers
36 views

Should a infrastructure library by loosely coupled to another infrastructure layer?

Is there any smell associated with having say a File.IO library being loosely coupled to the logging library? Or should they be kept separate and only combined in the application services?
1
vote
1answer
77 views

How to choose DDD Aggregate?

In book Applying Domain-Driven Design With Examples in C# in Chapter 4 (A first Sketch) on point 4. Concurrency Conflict Detection Is Important i don't understand why the author has choose this ...
1
vote
2answers
70 views

Can a Domain Model Factory Call a Repository?

In our DDD project we are using a Factory to create our initial aggregate root model 'Order'. There is a business rule that says new Orders have their supplier 'Order.Supplier' defaulted to a ...
2
votes
2answers
125 views

Contextual Domain Driven Model Validation

In our application we have a scenario where we need to validate an property update based on business rules and the context of the current user. I am trying to determine the best way to do the ...
0
votes
1answer
51 views

How to determine when a root aggregate contains too many one-to-many relationships?

I am really struggling with the following scenario: Let's say I have a user aggregate. A user can create 1+ groups, messages, friends, photo galleries, etc. Now it seems like groups, messages, ...
1
vote
1answer
56 views

What are the criteria for labeling a domain model as anemic?

So far, I have not come across a blog post or an article which describes the objective criteria for tagging a domain model as anemic. I think, it would definitely help to set objective criteria for ...
2
votes
1answer
94 views

DDD: one-to-many relationship between user aggregate root and almost all entities in other aggregates

I have the following DDD scenario, grouped into the following aggregates: User, Friends(User Associations), File(for user uploading), Galleries(grouping of files), Messages(user communication), ...
0
votes
2answers
57 views

Web Application and DDD

I'm new to EF, I want to develop a web application to sell. I've been reading about DDD (Domain-driven design ), but I find that its implementation is complicated. Any suggestions or some project to ...
1
vote
1answer
49 views

Is Snapshot supported from Greg Young EventStore?

I am seriously thinking of using EvenStore from Greg Young, for implementing a system based on events. However, I am not sure whether EventStore from Greg Young supports Snapshots. Snapshots are key ...
0
votes
1answer
48 views

DDD, EF and Referential Integrity

Ok so I have my roots defined. Entities inside a root are allowed references to other entities inside the same root, but not outside. There they can only have the identity or the related entity. ...
2
votes
1answer
61 views

How can class invariant strengthen pre and post-conditions?

Link You can think of the class invariant as a health criterion, which must be fulfilled by all objects in between operations. As a precondition of every public operation of the class, it can ...
1
vote
2answers
49 views

How to access entities within another aggregate?

I am trying to model the scenario using DDD where we have teams, developers and tasks a team shall do. Basically, I assume the following: Team is an entity (as it can change, e.g. by getting new ...
0
votes
0answers
50 views

Guidelines for designing a dynamic domain model

First of all, sorry for my bad english. Now, here is my question: Using CQRS/DDD in our current project we crashed with a delicate situation: We manage aggregates called Zones that represents cities, ...
0
votes
2answers
52 views

Implementing custom paging logic in BLL (not in stored procedures) for ObjectDataSource

So I've implemented objectDataSource custom paging in the DAL using stored proceedures like all the guides and tutorials describe, but I'm realizing that by putting your custom paging logic at the ...
1
vote
1answer
46 views

Should client check postcondition/should called method check precondition?

The preconditions and the postconditions of the public method form a contract between this method and its client. 1.According to, caller shouldn't verify postcondition and called method shouldn't ...
0
votes
1answer
26 views

SendEmail method in Member service?

I have a requirement to send daily emails to members of the system. I would like to know if SendMail method should be in MemberService or should I create separate service class for this? Appreciate ...
0
votes
1answer
54 views

How to design domain classes in grails?

Good day! Given these functional requirements: User Management Administrator Librarian Borrower *The users have the option of logging-in via OpenID. Property Management Book Memorandum ...
0
votes
1answer
31 views

DDD - inter dependency

I have 2 classes A and B, B has one to one association with B and uni-directional from A to B (both inside the same assembly). Now a method in class A calls a method in B. This method in B also uses a ...
1
vote
2answers
57 views

Is there widely agreed naming convention to differentiate between entities and value objects?

On couple DDD applications I worked on, we had sometimes both Entity and Value Object corresponding to same concept. Value objects were particularly useful when retrieving large lists for read-only ...
2
votes
1answer
45 views

Should entity contain only behavior that modifies the state?

I had a discussion recently with a co-worker, where he insisted that in Domain-Driven Design entities should not have a behavior that does not modify its state. In my experience to date, I never heard ...
2
votes
1answer
103 views

What types of Written Design Documents are used in DDD projects?

1.Which of the following types of written design documents do we normally use on DDD projects: a. Requirements specifications document b. Document explaining the the meaning of core elements c. ...
0
votes
1answer
50 views

WCF Service and large data tables - any alternatives to ddd/business objects?

Normally, I try to focus paradigms like DDD do have a clean application architecture, salted with ORM, IoC and so on. Now I need to set up a WCF service which delivers complete data tables (with ALOT ...
0
votes
1answer
43 views

How many aggregate roots do I have

These are my entities and relations: NO entity can exist without entity A. When A is deleted all other entities will be deleted too. Therefore A is my aggregate root. But I am not sure wether ...
1
vote
2answers
155 views

CQRS and synchronous operations (such as user registration)

I'm in the process of adopting DDD concepts for designing our next projects, and more specifically CQRS. After reading a LOT of stuff I'm now trying to implement a simple Proof Of Concept. The thing ...
0
votes
0answers
47 views

DDD Entity with both surrogate ID and (broken) functional candidate key

I have a very simple example where we - I and fellow colleagues - are discussing about: Relation Accountancy(1)-Orders(n) are referenced by a surrogate key 'ID'. Our order system indicates that ...
1
vote
1answer
52 views

Do Domain Events in Domain Driven Design hide the intent?

Using Domain Events is widely endorsed practice for DDD applications, but there are scenarios that prove tricky for me. I was working recently on an application where business logic required that ...
0
votes
1answer
47 views

Entity fetched from a webservice: how to integrate in DDD model?

I have a "Process" application with a complex model (simplified here). The application has a webservice as such: Webservice | Application behind webservice ...
0
votes
1answer
93 views

domain driven design (a sample blog application)

there. I was learning DDD recently and didn't quite understand the concepts. Here I have some questions about an sample blog application. Let's assume that there for domain objects in the blog ...
-2
votes
1answer
46 views

E Classifieds domain model to buy [closed]

I'm learning nhibernate and I want to put my skills on the practical application where I will using code first approach, serialization of nhib. session factory configuration object, asp.net mvc ...
2
votes
1answer
82 views

DDDD: Event data

I'm trying to get my head around DDDD in Greg Young's style. There is much talk about how to implement DDDD with CQRS+EventSourcing and there are some sample implementations ... and altogether it can ...
-1
votes
0answers
91 views

The Unit of Work Pattern [closed]

I want to see some real life examples of Unit of work design pattern. and if it is possible to explain to me how can implements unit of work design in a DDD architecture.

1 2 3 4 5 47