A cluster of associated objects that are treated as a unit for the purpose of data changes. External references are restricted to one member of the Aggregate, designated as the root. A set of consistency rules applies within the Aggregate's boundaries.
1
vote
1answer
33 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
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
58 views
How do I define aggregate and aggregate roots and link between aggregates
So I am new to DDD and I am trying to design an application correctly. But I am having a bit of difficulty with identifying aggregate roots.
My need is more or less a tree
*Customers
*Each customer ...
1
vote
1answer
53 views
How to design this domain model?
So I've the following Domain:
Applications and Versions, they are actually software applications
Devices, the devices on which the applications are installed
Installed Applications on Devices
...
0
votes
1answer
57 views
Add multiple children entities to the root aggreate or call multiple respositories
I have an entity A which has three children entities X, Y and Z.
I have also a generic repository one of those floating around the web...
In my Service method AXYZ()
I do multiple repositories ...
1
vote
2answers
173 views
DDD - Aggregate Root load/query performance
I'm playing with DDD and this question pop up.
How I load child Aggregate Roots? Several performance issues would arise. Imagine the following example:
public AggregateRoot1
{
#region
...
0
votes
1answer
89 views
Best Aggregate Roots and Data Repositories Suggestions
I'm trying to implement data repositories based upon the aggregate roots. However, I'm not sure if this is the best way and I need your feedback.
Here are the aggregate roots of my system I've come ...
1
vote
3answers
129 views
Aggregate roots, should they be responsible for deleting child objects?
I have a question in regarding aggregate roots, should they have the responsibility for deleting child objects or should that be up to the repository? What if I wanna query one file by its Id, should ...
0
votes
4answers
81 views
How to write read-only accessor functions in an aggregate root class?
Overall design: I have an aggregate class C that contains N member variables of type M_i, i = 1 ... N that each have a common write-only update() interface as well as class-specific read-only accessor ...
1
vote
1answer
79 views
Do aggregates have to be strongly consistent?
Everything I have read on DDD implies that state within aggregates must be strongly consistent.
This implies that if one required redundancy, then only strongly-consistent replication can be used ...
0
votes
1answer
309 views
Repository Pattern and aggregate root pattern and Entity Framework
I am architechting my application on the lines of Repository pattern, Aggregate root and Unit of work. I am using Entity Framework5 as ORM.
I am in a situation where I don't know how to proceed with ...
1
vote
1answer
115 views
DDD and MVC : The Contoller gets the AggregateRoot from Factory not Repository? huh?
I recently started on a project with an existing database (Oracle) and MVC 4. Lot's of coding has already occurred.. but there's no "strategy" in the code.. just DB -> ORM -> Controller. So i'm trying ...
0
votes
2answers
102 views
one repository for each root aggregate entity in domain driven design
If you follow the repository pattern they... say to create a repository for each root aggregate entity.
That means when I have this model:
customer has orders
order has products
product has supplier
...
3
votes
2answers
223 views
Avoid Unit of Work pattern in domain driven design
I have read this and it makes me think twice...:
"Avoid unit of work pattern. Aggregate roots should define transaction boundaries."
Why should someone avoid the UOW pattern applying domain driven ...
1
vote
2answers
120 views
DDD - Aggregate Roots - Dealing with Efficiency and Concurrency [closed]
First off, I'll admit that I'm a newbie to DDD and need to read the "blue book".
I'm building a system that has an AggregateRoot of type "Match". Each Match can have a collection of "Votes" and also ...
0
votes
1answer
130 views
Update a polymorphic child entity inside an aggregate root
I'm trying to figure out what is the best way to update a polymorphic child entity inside an aggregate root. For reference, let's say I have a ShippingContainer root entity that stores Cargo objects; ...
1
vote
1answer
69 views
Why are consistency rules spanning Aggregates allowed to be enforced at some later time?
From:
Invariants, which are consistency rules that must be maintained
whenver data changes, will involve relationships between members of
the AGGREGATE. Any rule that spans AGGREGATES will not ...
3
votes
2answers
190 views
Delete a child from an aggregate root
I have a common Repository with Add, Update, Delete.
We'll name it CustomerRepository.
I have a entity (POCO) named Customer, which is an aggregate root, with Addresses.
public class Customer
{
...
0
votes
1answer
137 views
What do we call for these types of objects that used within Domain Model in DDD?
I have tried to find a solution to this naming problem, but I could not find a similar usage anywhere on the web. It could be either we have a design flow in the domain model, or we simply don't use ...
0
votes
2answers
178 views
Is Aggregate Root with Deep Hierarchy appropriate in DDD?
I have a system where a user answers question in a form. I have objects representing this model but I am not quite sure how to organize these objects in terms of DDD.
Form (has its own list of) ...
0
votes
1answer
86 views
Code examples for aggregates roots and aggregates
I am trying to understand how to use Aggregate roots and Aggregates, but I can't find any concrete information or examples on it.
For example I have the following three Entities:
Survey
...
2
votes
3answers
205 views
How to handle concurrent constraints across aggregate roots
I'm afraid I already know the answer, but I'm hoping that somebody can provide an alternative solution that haven't found before. As always doing DDD according to Effective Aggregate Design is more ...
2
votes
2answers
186 views
DDD: solution for references to a non aggregate root
I have two aggregate roots and two non aggregate root entities:
I know, that the relation D -> B breaks DDD principle.
I heard, that in the most cases the solution is to make the referenced ...
1
vote
1answer
97 views
Implement sorting/filtering business logic into DDD aggregates
I am fairly new to DDD and for me I search in practical terms to a good function for an aggregate. I have a long list of users (User) and a create an aggregate (UserAggregate) for that.
Now in my ...
3
votes
4answers
211 views
Should lookup values be modeled as aggregate roots?
As part of my domain model, lets say I have a WorkItem object. The WorkItem object has several relationships to lookup values such as:
WorkItemType:
UserStory
Bug
Enhancement
Priority:
High
...
1
vote
1answer
60 views
Aggregates that require sharing of an entity
Consider my scenario of a model consisting of two aggregate roots, Customer and Order as well as a "shared" entity Address.
Also note that Address is abstract has the following subclasses: ...
0
votes
1answer
109 views
DDD: should “Comment” in an “Article” be an aggregate root?
I am starting to design a first simple application DDD-style, and I am starting to see how the concepts work together.
If I design a classic blog application, Article class will be one of my ...
4
votes
3answers
158 views
When to update audit fields? DDD
I have a Meeting Object:
Meeting{id, name, time, CreatedBy, UpdatedBy}
and a
MeetingAssignee{id, MeetingID, EmployeeId, CreatedBy, UpdatedBy)
Meeting, as Aggregate root, has a method ...
0
votes
1answer
243 views
DDD: can a Repository return entities inside an aggregate?
I have a City aggregate, having a list of PointOfInterest entities. This latter entity lies logically inside the City aggregate for reasons that won't be explained here. No entity holds a link to ...
2
votes
1answer
140 views
Operations on entities within a aggregate root
If i have designed an AR like the below, how do you think i should go about say updating a property in one of the order line objects ?
For Example how can i change the title for one of my order lines ...
1
vote
1answer
232 views
Aggregate Root in context of Repository Pattern
I understand that Aggregate Roots are the only object that will be loaded by the client and all operations for the objects within the aggregate root are done by the Aggregate Root. By the same ...
0
votes
1answer
42 views
How to reference a leaf from a different root?
I have this design :
A product has many pricing grids, a grid has many pricing periods
Product
Id
Name
Grids[]
Name
Periods[]
Price
Start
End
Now I have special offers, when a ...
0
votes
1answer
83 views
aggregate root design and size
I know there are a million questions like this. I'm sorry. I think mine is different but it may not seems so. I am new to DDD and trying to get a grip.
Part of my domain is like this.
Location 1-* ...
0
votes
1answer
76 views
Is this my aggregate root? [closed]
I have a method that loads a collection with a single object with it's children, all ancestors and their children. I don't have a proper name for this method but as far as I know this could be my ...
1
vote
1answer
166 views
Is CQRS correct for my domain?
I am modelling an archive which is part of an video demand system. Think of the archive like windows explorer where multiple users can create folders, upload videos, restructure folders etc. There are ...
2
votes
1answer
657 views
Aggregate Root support in Entity Framework
How can we tell Entity Framework about Aggregates?
when saving an aggregate, save entities within the aggregate
when deleting an aggregate, delete entities within the aggregate
raise a concurrency ...
1
vote
1answer
250 views
Is it OK to create huge events in Event Sourcing?
We are using event sourcing and construct aggregates from stream of events.
I have 2 aggregates - A1 and A2. A1 is used as a template in order to create A2.
The size of A1 can be pretty big.
The ...
0
votes
2answers
206 views
DDD EF Repository
With following DDD and the repository pattern, is it possible to return the aggregate root object with its child data already included instead of using lazy loading?
e.g. I have a warehouse entity as ...
0
votes
3answers
178 views
DDD and C# - Restricting access to child entity
I am almost certain I have overlooked something simple, but it hasn't clicked.
I have a Person entity (root of Person aggregate). I also have a child entity for Authentication and Authorization ...
4
votes
4answers
407 views
DDD - Modifications of child objects within aggregate
I am having some difficulty working out the best way to handle a fairly complex scenario. I've seen quite a few similar questions, but none addressed this scenario to my satisfaction.
An Order ...
2
votes
3answers
218 views
Architectural analysis help for new project
http://i.stack.imgur.com/YZXZN.png (I'm currently not allowed to embed images)
I could really use some help with my class model above. I'm ashamed to say that I have been one of "those" developers ...
0
votes
1answer
119 views
Paging among multiple aggregate root
I'm new to DDD so please executes me if some term/understanding are bit off. But please correct me and any advice are appreciated.
Let's say I'm doing a social job board site, and I've identified my ...
0
votes
3answers
356 views
How to update grandchildren in an aggregate root
I Use EF Code First, and lazy loading.
My problem relates to how to efficiently update an entity in within a grandchild collection. First of all, i fear this makes a lot of calls in the db that is ...
2
votes
2answers
234 views
Implementing Udi's Fetching Strategy - How do I search?
Background
Udi Dahan suggests a fetching strategy as a useful pattern to use for data access. I agree.
The concept is to make roles explicit. For example I have an Aggregate Root - Customer. I want ...
1
vote
1answer
215 views
EF Delete Child Object
When removing a child entity from the parent entity collection I noticed that EF sets the childs entity state to be modified instead of deleted.
Is there another property within the entity object ...
1
vote
1answer
302 views
How to identify aggregate roots in domain model?
Dabbling with domain driven design, I've run into a situation regarding how to identify aggregate roots within my domain model.
I have the following three classes, modelling a simple to-do list:
...
0
votes
2answers
763 views
How to implement Aggregate Root repository an add child entity with EF
I'm developing an MVC application. I have a Domain Model, and I use a repositry pattern for data access and Entity Framework Code First. I also have a UnitOfWork class which I call the repository ...
0
votes
0answers
213 views
Aggregate root updated when child modified
I'm using EF 4.2 where the relevant bits look like:
public class MyDbContext : DbContext
{
public IDbSet<User> Users { get; set; }
public IDbSet<Membership> ...
1
vote
1answer
123 views
trying to identify the aggregated roots of a car rental domain
I am trying to study some aspects of ddd with the domain of a car rental website.
The user/customer selects a car from a start and destination station and the time period.
The price calculation ...
0
votes
4answers
395 views
Delete Child Object From Aggregate Root With EF Repository
My original question is here.
Below is my updated code.
Public Function StockTransferItemRemove(removeRequest As StockTransferItemRequest) As StockTransferItemResponse Implements ...