When creating mappings for AutoMapper we can easily end up with a mass of CreateMap methods in the format
Mapper.CreateMap<string, NameType>(); Mapper.CreateMap<NameType, string>();
An alternate way of partitioning the various map creation methods is using the AutoMapper Profile class.
Instead we can create profiles with as fine or coarse granularity as you like, here’s an example
public class NameTypeProfile : Profile { protected override void Configure() { CreateMap<string, NameType>() CreateMap<NameType, string>(); } }
To register the profiles we need to then use
Mapper.AddProfile(new NameTypeProfile());
which can also become a little tedious, but there’s an alternative to this…
AutoAutoMapper Alternative
So instead of writing the code to add each profile we can use the AutoAutoMapper in the following way
AutoAutoMapper.AutoProfiler.RegisterProfiles();
this will find the profiles within the current assembly or those supplied as params arguments to the RegisterProfiles method for us. This way the profiles are registered for you.