نکاتی درباره استفاده از Automappers
301, MovedPermanently
http://enterprisecraftsmanship.com/2017/02/16/on-automappers/ icon
Never use automappers to map DTOs to domain classes.
Use them only to map from domain classes to DTOs.
Automappers might not add much value in complex domain models. In such scenarios, you can as well just implement the mapping manually.
Automappers are still useful as scaffolding mechanism when you start your project out, or if your domain isn’t too complex. 
نکاتی درباره استفاده از Automappers