Использование AutoMapper Config с ValueInjecter
Для всех, кто заинтересован, я создал расширение ValueInjecter, чтобы использовать существующую конфигурацию сопоставления AutoMapper с ValueInjecter.
Я создал это расширение, потому что мне пришлось переключиться на ValueInjecter, потому что я не мог скомпилировать AutoMapper против Client Framework 4.0. И я не хотел переписывать мою конфигурацию отображения.
Пример:
public class CalendarEvent
{
public DateTime EventDate { get; set; }
public string Title { get; set; }
}
public class CalendarEventForm
{
public DateTime EventDate { get; set; }
public int EventHour { get; set; }
public int EventMinute { get; set; }
public string Title { get; set; }
// Additional Members to show further mapping possibilities
public string BarToIgnore { get; set; }
public bool AlwaysTrue { get; set; }
}
static void Main(string[] args)
{
// You can use the AutoMapper extension for the ValueInjecter like you would user AutoMapper
// Model
var calendarEvent = new CalendarEvent
{
EventDate = new DateTime(2008, 12, 15, 20, 30, 0),
Title = "Company Holiday Party"
};
// Configure AutoMapper
Mapper.CreateMap<CalendarEvent, CalendarEventForm>()
.ForMember(dest => dest.EventDate, opt => opt.MapFrom(src => src.EventDate.Date))
.ForMember(dest => dest.EventHour, opt => opt.MapFrom(src => src.EventDate.Hour))
.ForMember(dest => dest.EventMinute, opt => opt.MapFrom(src => src.EventDate.Minute))
.ForMember(dest => dest.Title, opt => opt.MapFrom(src => src.Title))
.ForMember(dest => dest.BarToIgnore, opt => opt.Ignore())
.ForMember(dest => dest.AlwaysTrue, opt => opt.UseValue(true));
Mapper.AssertConfigurationIsValid();
// Perform mapping
CalendarEventForm form = Mapper.Map<CalendarEvent, CalendarEventForm>(calendarEvent);
// Assertions
Debug.Assert(form.EventDate == new DateTime(2008, 12, 15));
Debug.Assert(form.EventHour == 20);
Debug.Assert(form.EventMinute == 30);
Debug.Assert(form.Title == "Company Holiday Party");
Debug.Assert(form.BarToIgnore == null);
Debug.Assert(form.AlwaysTrue == true);
}
Похоже на AutoMapper, но внутри он использует ValueInjecter;) Надеюсь, вам понравится расширение.
Загрузить: http://wordpress.ad-factum.de/AutoMapperConfig_UsingValueInjecter.zip