当我收到此异常时,是否可以通过某种方式从automapper中获取更多详细信息:

AutoMapper.AutoMapperMappingException

通常,它会告诉我这两种映射类型,但不会告诉我哪个解析器或映射的一部分失败。

最佳答案

简单的答案是调用此方法,最好在您的单元测试中。

// ensure your configuration mappings are loaded first (bootstrapper)
Mapper.AssertConfigurationIsValid();

请参阅:http://docs.automapper.org/en/stable/Getting-started.html#how-do-i-test-my-mappings

09-27 11:19