Automapper配置(Automapper configuration)

2019-09-28 03:40发布

难道是足够多的在Global.asax中调用Mapper.Initialize中的Application_Start(),还是应该有些IoC容器采取终身作用域的照顾?

protected void Application_Start()
{
     Mapper.Initialize(x=>x.AddProfile(new SomeProfile()));
}

Answer 1:

应该够了。 我从来没有与初始化Automapper这样一个问题。



文章来源: Automapper configuration
标签: c# AutoMapper