Creating a profile for each type is really annoying. In most cases, you only need to create an entire class for one line
CreateMap<AddressModel, AddressDto>();
I prefer IMapTo & IMapFrom extension method that will automatically create profiles for the entire assembly
#dotnet
Now I need to tell my app which type will map which type. To do so, I create an EmployeeProfile class in a new file, to inform about the mapping.