其他分享
首页 > 其他分享> > 如何使用ABP的Profile类

如何使用ABP的Profile类

作者:互联网

一、ABP的Profile有什么用?

Profile用来编写AutoMapper的映射规则,在Profile类构造方法中编写的规则最后会配置到AutoMapper中,实现实体到DTO的自动映射。

二、代码浅析

1.ABP模板中,应用层的Module类有一个Initialize方法,该方法中用反射找到所有继承于Profile的类,并添加到映射配置。

public override void Initialize()
{
    var thisAssembly = typeof(EpiApplicationModule).GetAssembly();

    IocManager.RegisterAssemblyByConvention(thisAssembly);

    Configuration.Modules.AbpAutoMapper().Configurators.Add(
        // Scan the assembly for classes which inherit from AutoMapper.Profile
        cfg => cfg.AddMaps(thisAssembly)
    );
}

截图中的注释为ABP模板自带的注释,大意为:扫描该程序集中所有继承于Profile的类。(由于只扫描该程序集,这也是DTO写在应用层的原因之一)

2.继承Profile的例子

public class UserMapProfile : Profile
{
    public UserMapProfile()
    {
        CreateMap<UserDto, User>();
        CreateMap<UserDto, User>()
            .ForMember(x => x.Roles, opt => opt.Ignore())
            .ForMember(x => x.CreationTime, opt => opt.Ignore());

        CreateMap<CreateUserDto, User>();
        CreateMap<CreateUserDto, User>()
        	.ForMember(x => x.Roles, opt => opt.Ignore());
    }
}

构造方法中配置AutoMapper的映射规则,具体配置方法很多博客都有,就不在本文中介绍了。

标签:Profile,opt,映射,ABP,如何,CreateMap,AutoMapper
来源: https://blog.csdn.net/ZZHSourceCode/article/details/120421752