gpt4 book ai didi

c# - AutoMapper——继承映射不​​工作,相同的源,多个目的地

转载 作者:可可西里 更新时间:2023-11-01 08:22:52 24 4
gpt4 key购买 nike

我可以在 AutoMapper (v2.2) 中对源类型相同但目标类型不同的映射使用继承映射吗?

我有这样的基本情况(真正的类有更多的属性):

public abstract class BaseViewModel
{
public int CommonProperty { get; set;}
}

public class ViewModelA : BaseViewModel
{
public int PropertyA { get; set; }
}

public class ViewModelB : BaseViewModel
{
public int PropertyB { get; set; }
}

ViewModelAViewModelB 是同一实体类的不同表示:

public class Entity
{
public int Property1 { get; set; }
public int Property2 { get; set; }
public int Property3 { get; set; }
}

我想为每个 ViewModel 重用 BaseViewModel 的相同映射,例如:

Mapper.CreateMap<Entity, BaseViewModel>()
.Include<Entity, ViewModelA>()
.Include<Entity, ViewModelB>()
.ForMember(x => x.CommonProperty, y => y.MapFrom(z => z.Property1));

Mapper.CreateMap<Entity, ViewModelA>()
.ForMember(x => x.PropertyA, y => y.MapFrom(z => z.Property2));

Mapper.CreateMap<Entity, ViewModelB>()
.ForMember(x => x.PropertyB, y => y.MapFrom(z => z.Property3));

但不幸的是,这似乎行不通。像这样的调用:

var model = Mapper.Map<Entity, ViewModelA>(entity);

导致 model 映射了 PropertyA,但没有 CommonProperty。我相信我正在遵循 https://github.com/AutoMapper/AutoMapper/wiki/Mapping-inheritance 中的示例正确,但我担心使用相同的源类型创建多个 map 会使 AutoMapper 出错。

有什么见解吗?我喜欢将基类映射组合在一起的想法,但这似乎行不通。

最佳答案

不幸的是,在这种情况下,AutoMapper 似乎只为每个源类型注册一个子类映射,最后一个 (ViewModelB)。这可能是设计用于并行层次结构,而不是单一源类型。

要解决这个问题,您可以将通用映射封装在扩展方法中:

public static IMappingExpression<Entity, TDestination> MapBaseViewModel<TDestination>(this IMappingExpression<Entity, TDestination> map)
where TDestination : BaseViewModel {
return map.ForMember(x => x.CommonProperty, y => y.MapFrom(z => z.Property1));
}

并在各个子类映射中使用它:

Mapper.CreateMap<Entity, ViewModelA>()
.MapBaseViewModel<ViewModelA>()
.ForMember(x => x.PropertyA, y => y.MapFrom(z => z.Property2));

Mapper.CreateMap<Entity, ViewModelB>()
.MapBaseViewModel<ViewModelB>()
.ForMember(x => x.PropertyB, y => y.MapFrom(z => z.Property3));

关于c# - AutoMapper——继承映射不​​工作,相同的源,多个目的地,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13994081/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com