Applying domain driven desing I am confused a bit. I am using C# and Java
I have layers like this:
- Domain
- ApplicationService
- DataLayer
- PresentationLayer
ApplicationService layer is between presentation and Data layer. AppplicationService gets data from Data layer and converts it a PresentationDTO object and sends to presentation layer.
Do I need a new data transfer object (EntityFrameworkDTO) between ApplicationService and Data layer. Should I generate DTOs to use in repositories, or directly use domain entities in repository layer?
Have you ever applied Domain Driven Design?
In General for complex scenarios when your Model break apart to several views and viceversa, it better to use ViewModel or Data Transfer object to better management for views as needs of Views are something different from domain needs. Now, in Domain Driven Design as your Application Service should play an important role between Repository and Presentation, you have to have DTO as you are going to get the business Objects in you presentation layer from service layer. in other case you have to use Domain entities in you presentation layer which will make your Domain entities Non POCO. hope it helps.