我有这样的映射
Mapper.CreateMap<ISomething, ISomethingDto>();
我想将 AutoMapper 配置为根据源的具体类型构造某些具体类型,而不是生成代理。例如,我可能有
class SomethingSpecial : ISomething {...}
和
class SomethingSpecialDto : ISomethingDto{...}
当我打电话
Mapper.Map<ISomething, ISomethingDto>(aSomethingSpecial);
我想收到SomethingSpecialDto 的实例,但没有代理。