• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
梦天涯#
博客园    首页    新随笔    联系   管理    订阅  订阅

[转载]AutoMapper 9.0的改造(续)

转载自https://www.cnblogs.com/NCoreCoder/p/11453443.html

上一篇有一个读者,有疑问,如何自动化注册Dto

我开篇,做了一个自动化注册的

复制代码
    public sealed class AutoInjectAttribute : Attribute
    {
        public Type SourceType { get; }
        public Type TargetType { get; }

        public AutoInjectAttribute(Type sourceType, Type targetType)
        {
            SourceType = sourceType;
            TargetType = targetType;
        }
    }
复制代码

增加了一个特性,在Dto上面打上,参数1是源类型,参数2是Dto类型

增加一个工厂类保存自动转换的类型

复制代码
    public class AutoInjectFactory
    {
        public List<(Type,Type)> ConvertList { get; } = new List<(Type, Type)>();

        public void AddAssemblys(params Assembly[] assemblys)
        {
            foreach (var assembly in assemblys)
            {
                var atributes = assembly.GetTypes()
                    .Where(_type => _type.GetCustomAttribute<AutoInjectAttribute>() != null)
                    .Select(_type => _type.GetCustomAttribute<AutoInjectAttribute>());

                foreach (var atribute in atributes)
                {
                    ConvertList.Add((atribute.SourceType, atribute.TargetType));
                }
            }
        }
    }
复制代码

在原来的AddAutoMapper上找到修改的代码段

复制代码
        public static IServiceCollection AddAutoMapper(this IServiceCollection service)
        {
            ...略
            service.TryAddSingleton(serviceProvider =>
            {
                var mapperConfigurationExpression = serviceProvider.GetRequiredService<MapperConfigurationExpression>();

                var instance = new MapperConfiguration(mapperConfigurationExpression);

                instance.AssertConfigurationIsValid();

                return instance;
            });
            ...略

            return service;
        }
复制代码

改为

复制代码
        public static IServiceCollection AddAutoMapper(this IServiceCollection service)
        {
            ...略
            service.TryAddSingleton(serviceProvider =>
            {
                var mapperConfigurationExpression = serviceProvider.GetRequiredService<MapperConfigurationExpression>();
                var factory = serviceProvider.GetRequiredService<AutoInjectFactory>();

                foreach (var (sourceType,targetType) in factory.ConvertList)
                {
                    mapperConfigurationExpression.CreateMap(sourceType, targetType);
                }

                var instance = new MapperConfiguration(mapperConfigurationExpression);

                instance.AssertConfigurationIsValid();

                return instance;
            });
            ...略

            return service;
        }
复制代码

增加一组扩展方法

复制代码
    public static class AutoMapperExtension
    {
        ...略

        public static void UseAutoInject(this IApplicationBuilder applicationBuilder, params Assembly[] assemblys)
        {
            var factory = applicationBuilder.ApplicationServices.GetRequiredService<AutoInjectFactory>();

            factory.AddAssemblys(assemblys);
        }
    }
复制代码

在Startup.Configure方法内调用一下

 

看看测试

 

增加一个测试控制器

执行结果

 

 

 

posted @ 2019-11-29 14:51  梦天涯#  阅读(205)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3