标签: automapper
我一直在审查官方文档,并将Automapper与Ninject,SimpleInjector等一起使用对我来说似乎很好。 我想要一些如何向Unity容器注册配置文件的示例。 (MVC5和WebApi)
public class MyProfile : Profile { public MyProfile() { CreateMap<someDto, someEntity>(); } }