我有很多这样的类可以从IDataReader进行映射:
class Dest
{
public string Field1;
public string Field2;
public string Field3;
}
...
public DestProfile
{
CreateMap<IDataReader, Dest>()
.ForMember(d => d.Field1, opt => opt.MapFrom(/*Do some custom convertion here*/)
.ForAllOtherMembers(/*Do default convention-based mapping for all other members/*)
}
因此,我想对选定字段执行自定义转换,并进行默认映射而无需显式编码。
问题看起来很普遍,但是我没有找到实现该目标的方法。
答案 0 :(得分:0)
所以最直接的方法是这样写:
.ForAllOtherMembers(opt => opt.MapFrom(src => src[opt.DestinationMember.Name]))
但是有一些警告。例如
.IncludeBase<IDataReader, Base>()
.ForAllOtherMembers(opt => opt.MapFrom(src => src[opt.DestinationMember.Name]))
此处ForAllOtherMembers将覆盖您的基类定义。