About 180,000 results
Open links in new tab
  1. Domain Driven Design: Domain Service, Application Service

    Can someone explain the difference between domain and application services by providing some examples? And, if a service is a domain service, would I put the actual implementation of this …

  2. What is Domain Driven Design? - Stack Overflow

    Aug 30, 2017 · Domain Driven Design is a methodology and process prescription for the development of complex systems whose focus is mapping activities, tasks, events, and data …

  3. Samples for Domain Driven Design (esp .NET focused)

    Oct 27, 2011 · 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 …

  4. Are there any open source examples of domain driven design?

    Jul 7, 2022 · 1 I've been reading the books and watching videos, but would love to see some real world implementations of good DDD. Tangentially related - are there any Youtube videos of …

  5. domain driven design - When do you use entities, value objects …

    Nov 5, 2023 · I read the book on Domain Driven Design (DDD) by Eric Evans. He wrote a chapter on building blocks of DDD: entities, value objects and aggregates. How you define these …

  6. domain driven design - What is an Aggregate? - Stack Overflow

    May 31, 2023 · In the Domain Driven Design world, the authoritative definition of aggregate is from Eric Evans book Domain Driven Design: Tackling Complexity in the Heart of Software. An …

  7. domain driven design - Java code example of Hexagonal …

    Jun 12, 2020 · So I'm looking for an example Java project that practically demonstrates the interactions between the Domain, Application, and Framework layers. Anyone know if …

  8. Actor design pattern and real-world examples - Stack Overflow

    Feb 11, 2021 · Using the Actor Model with Domain-Driven Design (DDD) in Reactive Systems (he turns domain aggregates into actors), and also Alexey Zimarev in DDD, Event Sourcing and …

  9. domain driven design - Who acts as a conformist in the Customer ...

    Jun 5, 2024 · In the context of Domain-Driven Design (DDD), the Customer/Supplier pattern describes a relationship between two bounded contexts where one context (Customer) relies …

  10. Domain Driven Design (DDD) Common entity class with strongly …

    Jul 7, 2023 · I see lots of DDD examples with something like following using Id of Guid type public abstract class Entity : IEquatable<Entity> { public Entity(Guid id) { ...