标签: c# automapper
是否足以在global.asax中的Application_Start()中调用Mapper.Initialize,或者某个IoC容器应该处理生命期范围?
protected void Application_Start() { Mapper.Initialize(x=>x.AddProfile(new SomeProfile())); }
答案 0 :(得分:4)
应该够了。我从来没有遇到过以这种方式初始化Automapper的问题。