标签: c# automapper
是否可以在AutoMapper中禁用所有基于约定的映射?我想明确定义所有映射,而不是让AutoMapper根据属性名做出任何假设。
我已经看到了使用.ForAllMembers(opt => opt.Ignore())的建议,但这不起作用,因为它会从Include<>()中杀死继承的地图。
.ForAllMembers(opt => opt.Ignore())
Include<>()