gpt4 book ai didi

.NET Core中依赖注入AutoMapper的方法示例

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章.NET Core中依赖注入AutoMapper的方法示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文主要介绍了关于.NET Core中依赖注入AutoMapper的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍:

最近在 review 代码时发现同事没有像其他项目那样使用 AutoMapper.Mapper.Initialize() 静态方法配置映射,而是使用了依赖注入 IMapper 接口的方式 。

?
1
2
3
4
services.AddSingleton<IMapper>( new Mapper( new MapperConfiguration(cfg =>
{
  cfg.CreateMap<User, MentionUserDto>();
})));

于是趁机学习了解一下,在 github 上发现了 AutoMapper.Extensions.Microsoft.DependencyInjection ,使用它只需通过 AutoMapper.Profile 配置映射 。

?
1
2
3
4
5
6
7
public class MappingProfile : Profile
{
  public MappingProfile()
  {
   CreateMap<User, MentionUserDto>();
  }
}

然后通过 AddAutoMapper() 进行依赖注入,它会在当前程序集自动找出所有继承自 Profile 的子类添加到配置中 。

?
1
services.AddAutoMapper();

后来发现在使用 ProjectTo 时 。

?
1
2
3
.Take(10)
.ProjectTo<MentionUserDto>()
.ToListAsync();

发现如果自己使用 AddSingleton<IMapper>() ,会出现下面的错误(详见博问):

?
1
Mapper not initialized. Call Initialize with appropriate configuration.

使用 AddAutoMapper() 并且将 UseStaticRegistration 为 false 时也会出现同样的问题.

解决方法是给 ProjectTo 传参 _mapper.ConfigurationProvider (注:传 _mapper 不行) 。

?
1
.ProjectTo<MentionUserDto>(_mapper.ConfigurationProvider)

对于自己依赖注入的操作方式,后来参考  AutoMapper.Extensions.Microsoft.DependencyInjection 的实现 。

?
1
2
services.AddSingleton(config);
return services.AddScoped<IMapper>(sp => new Mapper(sp.GetRequiredService<IConfigurationProvider>(), sp.GetService));

采用了下面的方式,如果不想使用 AddAutoMapper()  通过反射自动找出 Profile ,建议使用这种方式 。

?
1
2
3
4
5
6
AutoMapper.IConfigurationProvider config = new MapperConfiguration(cfg =>
{
  cfg.AddProfile<MappingProfile>();
});
services.AddSingleton(config);
services.AddScoped<IMapper, Mapper>();

总结 。

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对我的支持.

原文链接:http://www.cnblogs.com/dudu/p/8279114.html 。

最后此篇关于.NET Core中依赖注入AutoMapper的方法示例的文章就讲到这里了,如果你想了解更多关于.NET Core中依赖注入AutoMapper的方法示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com