Tagged Questions
The aggregates tag has no wiki summary.
6
votes
3answers
2k views
Domain Driven Design - Aggregate Roots
I'm struggling with aggregates and aggregate roots. I have a natural aggregate root which works for about 60% of the user requests. I.e. those requests naturally apply to the aggregate root.
Within ...
5
votes
2answers
261 views
Django - Count a subset of related models - Need to annotate count of active Coupons for each Item
I have a Coupon model that has some fields to define if it is active, and a custom manager which returns only live coupons. Coupon has an FK to Item.
In a query on Item, I'm trying to annotate the ...
3
votes
3answers
83 views
Query for missing elements
I have a table with the following structure:
timestamp | name | value
0 | john | 5
1 | NULL | 3
8 | NULL | 12
12 | john | 3
33 | NULL | 4
54 | pete | 1
...
2
votes
2answers
63 views
PostgreSQL Aggregates with Multiple Parameters
I've been trying to wrap my head around creating aggregates in PostgreSQL (either 8.4 or 9.1) that accept one or more option parameters.
An example would be creating a PL/R extension to compute the ...
2
votes
1answer
395 views
Repository pattern aggregate and aggregate root with Entity Framework 4.0
I have a question on implementing the repository pattern with my data model. I have searched online and looked into a lot of posts but I do not find any answer which clears my doubts. Basically our ...
2
votes
3answers
375 views
Getting Additional Data for a Domain Entity
I have a domain Aggregate, call it "Order" that contains a List of OrderLines. The Order keeps track of the sum of the Amount on the Order Lines. The customer has a running "credit" balance that they ...
2
votes
3answers
2k views
Linq - calculate multiple averages in one query
I'm trying to convert some SQL queries into Linq to avoid multiple trips to the database.
The old SQL I'm trying to convert does:
SELECT
AVG(CAST(DATEDIFF(ms, A.CreatedDate, B.CompletedDate) AS ...
2
votes
3answers
344 views
How do I represent Domain Aggregates in MVC pattern?
SHould I create a separate class for each object in an aggregate or should the objects be nested classes of a single aggregate class?
1
vote
2answers
51 views
Multi-aggregate, Multi-Filter, Single Table SQL
The following simulated table contains order details where cust_nbr represents the order number. I'm trying to find where if an order contains an item_nbr 90000, I need to know if the price for 90000 ...
1
vote
1answer
84 views
Should Domain Entities always be loaded in their entirety?
I have a custom ASP.NET Membership Provider that I am trying to add password history functionality to. User's passwords expire after X days. Then they have to change their password to one that has not ...
1
vote
1answer
119 views
Where is the proper place to put domain logic to update a child of an aggregate root?
Is it a best practice to update children of an aggregate root directly, or only through its aggregate root? For example, which is preferred:
Order.UpdateOrderLineQuantity(orderLine, quantity);
or
...
1
vote
1answer
312 views
Aggregate analog of row count component?
I'd like to have a way to get the sum of a field stored into a variable from inside a dataflow task. The rowcount transform does this, but I can't see how to use any other aggregate functions. Is ...
1
vote
3answers
1k views
DDD: Aggregate Roots
I need help with finding my aggregate root and boundary.
I have 3 Entities: Plan, PlannedRole and PlannedTraining. Each Plan can include many PlannedRoles and PlannedTrainings.
Solution 1: At ...
0
votes
1answer
55 views
How to return zero value with count()
How can I return rows where count(a.thread_id) = 0?
SELECT current_date AS "Import Date",
b.container_id AS "ID",
...
0
votes
2answers
187 views
How to define aggregate roots from a relational model in order to use it for DDD?
Ive looked quite a while at others posts in there relativly to aggregates roots. It seem that i don't understand at all how to define in the right way aggregates roots. I saw answers such as ...