The aggregate tag has no wiki summary.
-1
votes
1answer
91 views
Data aggregation like polyvore.com [closed]
I'm creating a website that is going to aggregate women shoes from across the web into one website. Kinda like polyvore.com does with all their products but mine is only going to be shoes. Which ...
5
votes
3answers
375 views
DDD - Aggregate Roots - Dealing with Efficiency and Concurrency
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 ...
3
votes
3answers
289 views
what does composition example vs aggregation
Composition and aggregation both are confusion to me. Does my code sample below indicate composition or aggregation?
class A {
public static function getData($id) {
//something
}
...
1
vote
3answers
169 views
Aggregate root & Repository dilemma
I am in a big dilemma here.
I have a League, Team and Player entities. I have created a repo for the league only as a Team cannot exists without a League. At first I had bounded the players only with ...
2
votes
5answers
470 views
How to find out what Hackathons are coming up near me? [closed]
I just went to my first hackathon (London GreenHackathon) and I want to go to lots more. Specifically, hackathons that have a theme of helping people or making the world a better place in some way. I ...
4
votes
4answers
2k views
Are DDD Aggregates really a good idea in a Web Application?
I'm diving in to Domain Driven Design and some of the concepts i'm coming across make a lot of sense on the surface, but when I think about them more I have to wonder if that's really a good idea.
...
1
vote
4answers
874 views
Can an aggregate root hold references of members of another aggregate root?
I know that outside of aggregates I can't change anything inside an aggregate without passing by his root. That said I would like to know if an aggregate root can hold references of members (objects ...
3
votes
4answers
812 views
DBMS agnostic - What to name the COUNT column from a SQL Query
I have trouble naming the COUNT() column from SQL queries and will swap between various variants
_Count
[Count] (sql, or "count" or backticks for MySQL etc)
C
Cnt
CountSomething (where "something" ...