我想将新地图添加到创建的Mapper中。我研究了这个文件
http://docs.automapper.org/en/stable/Configuration.html#profile-instances
但无法理解。 我想要的方式就像这样
var config = new MapperConfiguration(cfg =>
{
cfg.CreateMap<Contact, Person>();
cfg.CreateMap<Student, Class>();
etc..
});
//My other code
//My other code
cfg.CreateMap<X, Y>();
所以我想再次访问cfg并使用它将新地图添加到现有的mapper配置中。如何将新映射器添加到已初始化的映射器?