If we works with a solution that contains multiple projects (lets say following the DDD clean architecture), Where I have the followig projects: Core (Contains only the core entities and Interfaces) EFCore (Contains the EF Core) CQRSCore (Contains the CQRS implementation) WEB (Is an ASP.NET Core api)
From your experience: Is the
CQRSCore
CQRSCore
queries should return the pure
entities
entities
of the
Core
Core
project or should it returns
DTOs
DTOs
? What is the best place to put the
Automapper
Automapper
and using it ? (means which project of them should use the automapper)