Вы можете зарегистрировать конфигурацию, как показано ниже.
Класс профиля
public class UserProfile : Profile
{
public UserProfile()
{
this.CreateMap<UserDTO, User>();
this.CreateMap<User, UserDTO>().ForMember(dest => dest.Company, opt => opt.Ignore()); ;
}
}
Класс AutoMap
public static class AutoMap
{
public static IMapper Mapper { get; set; }
public static void RegisterMappings()
{
var mapperConfiguration = new MapperConfiguration(
config =>
{
config.AddProfile<UserProfile>();
});
Mapper = mapperConfiguration.CreateMapper();
}
}
Global.asax
AutoMap.RegisterMappings();