Оновлення: Розміщений тут підхід більше не дійсний, оскільки SelfProfiler
видалено з AutoMapper v2.
Я би застосував подібний підхід, як і Thoai. Але я б використовував вбудований SelfProfiler<>
клас для обробки карт, а потім використовував Mapper.SelfConfigure
функцію для ініціалізації.
Використання цього об'єкта як джерела:
public class User
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime BirthDate { get; set; }
public string GetFullName()
{
return string.Format("{0} {1}", FirstName, LastName);
}
}
І це як пункт призначення:
public class UserViewModel
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
public class UserWithAgeViewModel
{
public int Id { get; set; }
public string FullName { get; set; }
public int Age { get; set; }
}
Ви можете створити ці профілі:
public class UserViewModelProfile : SelfProfiler<User,UserViewModel>
{
protected override void DescribeConfiguration(IMappingExpression<User, UserViewModel> map)
{
//This maps by convention, so no configuration needed
}
}
public class UserWithAgeViewModelProfile : SelfProfiler<User, UserWithAgeViewModel>
{
protected override void DescribeConfiguration(IMappingExpression<User, UserWithAgeViewModel> map)
{
//This map needs a little configuration
map.ForMember(d => d.Age, o => o.MapFrom(s => DateTime.Now.Year - s.BirthDate.Year));
}
}
Щоб ініціалізувати свою програму, створіть цей клас
public class AutoMapperConfiguration
{
public static void Initialize()
{
Mapper.Initialize(x=>
{
x.SelfConfigure(typeof (UserViewModel).Assembly);
// add assemblies as necessary
});
}
}
Додайте цей рядок у файл global.asax.cs: AutoMapperConfiguration.Initialize()
Тепер ви можете розмістити свої класи картографування там, де вони мають сенс для вас і не турбуватися про один клас монолітного картографування.