using AutoMapper; using Volo.Abp.AutoMapper; using Volo.Abp.Identity; namespace Lsw.Abp.IdentityManagement.Blazor.AntDesignUI; public class AbpIdentityBlazorAntDesignAutoMapperProfile: Profile { public AbpIdentityBlazorAntDesignAutoMapperProfile() { CreateMap() .MapExtraProperties() .Ignore(x => x.Password) .Ignore(x => x.RoleNames); CreateMap() .MapExtraProperties(); } }