5
I have a scenario where I need to search for a list of Active Employees with Entity Framework and display them on the screen (I need to convert to Dtos before displaying - what I do through the Application layer).
For a DDD scenario (Domain-Driven Design) there are the layers of Applying, Domain and Infra... I am in doubt in this scope. The domain services are created when logic has importance to the domain, right ? So I could search this list directly from Application and Repository, without creating a service in the Domain ? Of course, looking for an asset list would be just a LINQ filter, I don’t know if I can consider that a business rule... Who can clarify me this doubt thank you.
Thank you for the reply.
– Wilson Santos