.NET Core中依赖注入AutoMapper的方法示例
本文主要介绍了关于.net core中依赖注入automapper的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍:
最近在 review 代码时发现同事没有像其他项目那样使用 automapper.mapper.initialize()
静态方法配置映射,而是使用了依赖注入 imapper 接口的方式
services.addsingleton<imapper>(new mapper(new mapperconfiguration(cfg => { cfg.createmap<user, mentionuserdto>(); })));
于是趁机学习了解一下,在 github 上发现了 automapper.extensions.microsoft.dependencyinjection ,使用它只需通过 automapper.profile
配置映射
public class mappingprofile : profile { public mappingprofile() { createmap<user, mentionuserdto>(); } }
然后通过 addautomapper()
进行依赖注入,它会在当前程序集自动找出所有继承自 profile 的子类添加到配置中
services.addautomapper();
后来发现在使用 projectto 时
.take(10) .projectto<mentionuserdto>() .tolistasync();
发现如果自己使用 addsingleton<imapper>()
,会出现下面的错误(详见):
mapper not initialized. call initialize with appropriate configuration.
使用 addautomapper()
并且将 usestaticregistration 为 false 时也会出现同样的问题。
解决方法是给 projectto 传参 _mapper.configurationprovider
(注:传 _mapper 不行)
.projectto<mentionuserdto>(_mapper.configurationprovider)
对于自己依赖注入的操作方式,后来参考 automapper.extensions.microsoft.dependencyinjection
的实现
services.addsingleton(config); return services.addscoped<imapper>(sp => new mapper(sp.getrequiredservice<iconfigurationprovider>(), sp.getservice));
采用了下面的方式,如果不想使用 addautomapper()
通过反射自动找出 profile ,建议使用这种方式
automapper.iconfigurationprovider config = new mapperconfiguration(cfg => { cfg.addprofile<mappingprofile>(); }); services.addsingleton(config); services.addscoped<imapper, mapper>();
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
推荐阅读
-
ASP.NET Core 2.2 WebApi 系列【三】AutoFac 仓储接口的依赖注入
-
ASP.NET防止SQL注入的方法示例
-
ASP.NET Core中调整HTTP请求大小的几种方法
-
CSRF在ASP.NET Core中的处理方法详解
-
.NET Core部署中你不了解的框架依赖与独立部署
-
CSRF在ASP.NET Core中的处理方法详解
-
ASP.NET Core中实现用户登录验证的最低配置示例代码
-
asp.net core webapi项目配置全局路由的方法示例
-
asp.net core 3.0中使用swagger的方法与问题
-
在ASP.NET Core5.0中访问HttpContext的方法步骤