About 3,110,000 results
Open links in new tab
  1. What is Domain Driven Design? - Stack Overflow

    Aug 30, 2017 · DDD (domain driven design) is a useful concept for analyse of requirements of a project and handling the complexity of these requirements.Before that people were analysing …

  2. What is Domain Driven Design (DDD)? - Stack Overflow

    Aug 10, 2019 · Before attempting DDD, you should be familiar with design patterns and enterprise design patterns. Knowing these makes DDD a lot easier to grasp. And, as mentioned above, …

  3. Can you suggest DDD best practices - Stack Overflow

    Aug 14, 2013 · The first best practice I can suggest is to read the Evans' book. Twice. Too many "DDD projects" fail because developers pretend that DDD is simply OOP done right. Then, you …

  4. 能否用一个简单的实际业务场景通俗易懂的解释DDD(领域驱动设 …

    由于业务场景或者技术条件的限制,有的可能用.NET,有的则是 Java,有的甚至大数据架构。 对于这些存在技术异构的功能,可以考虑按照技术边界进行拆分。 5、其他 效率问题 虽然DDD …

  5. When do you use entities, value objects and aggregates (DDD)?

    Nov 5, 2023 · Entity versus Value object In DDD, you model your business cases using domain objects. These objects can fall into 2 categories: entities and value objects. Entites have a …

  6. DAO, Repositories and Services in DDD - Stack Overflow

    Nov 13, 2013 · After reading several articles, I am starting to understand the difference between DAO and Repositories, but I find myself in trouble trying to understand the difference between …

  7. DDD - which layer DTO should be implemented - Stack Overflow

    Nov 3, 2019 · The DTO implementation seems part of the Domain, but it means that when I create a collection of DTOs in the Service Layer and pass it to a Presentation Layer, I have to …

  8. DDD - Dependencies between domain model, services and …

    To your last point, services in DDD are a place to put what I describe as "awkward" logic. If you have some type of logic or work flow that has dependencies on other entities this is the type of …

  9. 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 …

  10. Differences between DDD & MDD - Stack Overflow

    Feb 1, 2017 · Domain Driven Design (DDD) Model Driven Design (MDD) I always find these two terms in many articles and public literature, but no one highlights the differences.