[使用AutoMapper映射功能映射对象时将源对象的属性保留到目标属性

问题描述 投票:0回答:1

我想将当前对象的大多数属性(this一个FinancialBase实例)映射到另一个对象(“目标”对象schedule,一个Schedule类的实例)。但是,我需要保留一小部分目的地的属性。

我已经使用“ hack”进行了工作,在这里我明确捕获了值,然后在AfterMap函数中使用了这些值。参见示例代码。

var id = schedule.Id;
var parentId = schedule.ParentId;
var scheduleNo = schedule.ScheduleNo;
var schName = schedule.SchName;

var config = new MapperConfiguration(
    cfg => cfg.CreateMap<FinancialBase, Schedule>()
    .ForMember(d => d.Id, opt => opt.Ignore())
    .ForMember(d => d.ParentId, opt => opt.Ignore())
    .ForMember(d => d.ScheduleNo, opt => opt.Ignore())
    .ForMember(d => d.SchName, opt => opt.Ignore())
    .AfterMap((s, d) => d.Id = id)
    .AfterMap((s, d) => d.ParentId = parentId)
    .AfterMap((s, d) => d.ScheduleNo = scheduleNo)
    .AfterMap((s, d) => d.SchName = schName));
var mapper = config.CreateMapper();
schedule = mapper.Map<Schedule>(this);

我不希望使用示例的前四行,而是使用常规的AutoMapper lambda表达式来包含它们。可能吗?

c# automapper
1个回答
0
投票

我只想使用映射到现有对象:

var existingSchedule = new Schedule()
{
    Id = 12,
    ParentId = 34,
    ScheduleNo = 56,
    SchName = "Foo",
};

var schedule = mapper.Map(this, existingSchedule);

并且在配置中保留Ignore()行,但是用AfterMap()删除那些行,因为不再需要它们:

var config = new MapperConfiguration(
    cfg => cfg.CreateMap<FinancialBase, Schedule>()
        .ForMember(d => d.Id, opt => opt.Ignore())
        .ForMember(d => d.ParentId, opt => opt.Ignore())
        .ForMember(d => d.ScheduleNo, opt => opt.Ignore())
        .ForMember(d => d.SchName, opt => opt.Ignore()));
© www.soinside.com 2019 - 2024. All rights reserved.