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