自动映射删除每个映射的前缀

时间:2018-04-18 18:54:28

标签: c# automapper

我想从源对象中删除一个前缀,但是我想为每个地图执行一个非全局的前缀,因为它可能会导致在不应该删除列的情况下出现问题。是否有捷径可寻?这就是我现在正在使用的

public partial class MappingProfile : Profile
{


    public MappingProfile()
    {
        //I would prefer this not to be a global and only remove the prefix on the specific map below
        RecognizePrefixes("Can");
        CreateMap<Candidate, CandidateVM>();
    }
}

0 个答案:

没有答案