In Code Like A Girl. More on Medium.

To begin this article, let’s define AutoMapper. AutoMapper is an object-object mapper which solves the problem of manually mapping each property of a class to the same properties of another class. Automapper is a convention-based class mapping tool, meaning it relies on naming conventions of parameters.
I have actually known AutoMapper for years now. I used it in a couple of previous projects and I recently decided to pick it up again.
Ideally, if we want to assign one object property to another object property (e.g, …