
DDD - which layer DTO should be implemented - Stack Overflow
Nov 3, 2019 · DDD has domain services that naturally belong to the domain layer. In some situations when the domain service needs to interact with other BCs or external systems, then …
Differences between DDD & MDD - Stack Overflow
Feb 1, 2017 · The two design approaches are very similar. Check out this StackOverflow link for some great, detailed answers on this topic: Domain Driven Design vs Model Driven …
c# - Which layer should i declare enums? - Stack Overflow
Jun 30, 2014 · In multi layer solutions, each layer should only depend on the layer below it. For example if you are working using DDD you would probably have this Presentation layer …
Where to put a helper class in a DDD architecture?
Jun 13, 2017 · Since I'm using DDD for the first time, and based on the humble knowledge I have, I think the helper class can be put in the Domain Layer since it's where it is going to be used. …
architecture - In DDD, where's the right or recomendable place to …
Aug 23, 2022 · In order to respect the DDD architecture, where it could be the right or recomendable place to call the logging service (placed at the infrastructure layer, with …
c# - DDD architecture - Stack Overflow
Jul 10, 2021 · i have a this question, that i just cant get my head around it Right now, i am implementing a DDD architecture, in a .NET CORE project, i have created 3 layers, …
Where i should put my DTOs in clean architecture?
Feb 18, 2019 · Need to implement the clean architecture and struggling with DTO concept. As I understand, i can't use my domain objects in presentation layer (asp mvc) instead i should use …
what is the difference between event driven and domain driven …
Jan 10, 2020 · DDD defines a separate domain model for each subdomain. A subdomain is part of the domain. Microservice architecture - architect an application as a collection of loosely …
DDD Architecture - Where To Put Common Methods/Helpers
Dec 17, 2016 · According to this question on Stack Overflow, in DDD architecture "helper" classes can be in different layers depending on their purpose. For example a helper that formats …
architecture - DDD Hexagon - Should the Domain Layer ever talk …
Mar 24, 2021 · DDD Hexagon - Should the Domain Layer ever talk to the Infrastructure (DAL) Layer in any situation? Asked 4 years, 3 months ago Modified 1 year, 4 months ago Viewed …