Closed ahmadmasoum closed 2 years ago
Is it a tiered application?
[Volo.Abp.Identity.IdentitySecurityLogDto, Volo.Abp.Identity.Pro.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]
Is it a commercial template? If so, can you create an issue at https://support.abp.io/QA/Questions?
Is it a tiered application?
Yes
Is it a commercial template?
I already fixed it But it's a problem that happens every time I make a new project, and I'm giving feedback
hi
This is fixed in 5.2-RC2.
CreateMap<IdentityUser, IdentityUserDto>()
.MapExtraProperties()
.ForMember(dest => dest.LockoutEnd, src => src.MapFrom<DateTime?>(r => r.LockoutEnd.HasValue ? r.LockoutEnd.Value.DateTime : null))
.Ignore(x => x.IsLockedOut)
.Ignore(x => x.SupportTwoFactor)
.Ignore(x => x.RoleNames);
CreateMap<IdentitySecurityLog, IdentitySecurityLogDto>();
Your ABP Framework version: 5.1.4.
Your User Interface: MVC
Your database provider: EF Core
Every time I create a new project I get these errors
Error 1 When trying to register
Error 2 When opening SecurityLogs from account
To fix it I have to manually add