Güncelleme: Burada yayınlanan yaklaşım SelfProfiler
, AutoMapper v2'den kaldırıldığı için artık geçerli değil .
Thoai ile benzer bir yaklaşım benimseyecektim. Ancak SelfProfiler<>
, haritaları kullanmak için yerleşik sınıfı, ardından Mapper.SelfConfigure
başlatmak için işlevi kullanırdım.
Bu nesneyi kaynak olarak kullanma:
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);
}
}
Ve bunlar hedef olarak:
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; }
}
Bu profilleri oluşturabilirsiniz:
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));
}
}
Uygulamanızda başlatmak için bu sınıfı oluşturun
public class AutoMapperConfiguration
{
public static void Initialize()
{
Mapper.Initialize(x=>
{
x.SelfConfigure(typeof (UserViewModel).Assembly);
// add assemblies as necessary
});
}
}
Bu satırı global.asax.cs dosyanıza ekleyin: AutoMapperConfiguration.Initialize()
Artık haritalama sınıflarınızı sizin için anlamlı olan yerlere yerleştirebilir ve tek bir monolitik haritalama sınıfı için endişelenmeyebilirsiniz.