AbpApplicationFactory.CreateAsync
This method only available in v5.1+ https://github.com/abpframework/abp/pull/10928
I will check the docker problem.
Add them to your module depends on attribute.
[DependsOn( typeof(AbpIdentityDomainModule), typeof(AbpIdentityEntityFrameworkCoreModule))]
I added the Volo.Abp.Identity.Domain to my application project.
You also need the Volo.Abp.Identity.EntityFrameworkCore module.
Yes, Something like this.
Can you try this? https://docs.microsoft.com/en-us/aspnet/core/security/enforcing-ssl?view=aspnetcore-6.0&tabs=visual-studio#trust-the-aspnet-core-https-development-certificate-on-windows-and-macos
hi
You cannot use identity-related dbcontext and repository in your repository methods, you can use them in domain or application services.
var users = IdentityUserRepository.GetAll()
var mailRecive = mailReciveRepository.GetAll()
var foo = mailRecive.where(user.xxx)
hi
This problem doesn't seem to be related to ABP, you need to create a resource file.
Please try to remove the resourceType and custom the DataAnnotationLocalizerProvider func.
https://github.com/abpframework/abp/blob/29366d4ae0814f1c5a985708ae74d2e0d6897322/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/AbpAspNetCoreMvcModule.cs#L124
https://stackoverflow.com/questions/37833661/asp-net-core-displayattribute-localization?answertab=votes#tab-top
https://github.com/spospisil/ABPSampleServiceError/pull/1
hi
You are using Blazor Server, this is expected. It uses a mix of mvc and blazor for UI, it's actually a backend application so requires EF Core.