I was looking at a library called Automapper. I am having a few concerns with this:
We dont want to expose our data model (GOOD). Why should the datamodel closely resemble your DB?
using lightweight DTOs instead of your entities. (GOOD)
Now I need to map my entities to these DTOs. Am i respecting the DRY principle??