
一文读懂:领域驱动设计DDD - 知乎
Sep 22, 2025 · 领域驱动设计(DDD)前些年很火,因为近两年2B和SAAS越来越受关注。但不少人读过Eric Evans的《领域驱动设计》和Vaughn Vernon的《实现领域驱动设计》后,都很 …
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 …
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, …
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 …
domain driven design - Rest API and DDD - Stack Overflow
Feb 29, 2016 · Domain-driven design is about domain. API clients should be designed with domain in mind too. Otherwise you lose most of benefits of DDD.
DDD: guidance on updating multiple properties of entities
DDD is better suited for task-based UIs. What you describe is very CRUD-oriented. In your case, individual properties are treated as independent data fields where one or many of these can …
DDD - Persistence Model and Domain Model - Stack Overflow
In DDD, are the persistence model and domain model different things? I mean, we design our domain and classes with only domain concerns in mind; that's okay. But after that when we …
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 …
DDD: Where to keep domain Interfaces, the Infrastructure?
Apr 1, 2009 · Concerning where to put the repositories, personally I always put the repositories in a dedicated infrastructure layer (e.g . MyApp.Data.Oracle) but declare the interfaces to which …
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 …