hi
When I add migration with module dbContext then It throws error that no dbContext was found. The startup project is main host application and selected project is main entity framework module.
Please share the command, execution folder and exception details.
Can you try to run dotnet ef migrations add TestName
in your application ef core project?
Thanks
hi
Can you share what code changes you have done?
Thanks
hi
The unique_name,given_name,email_verified,phone_number_verified
claims are created by AbpUserClaimsPrincipalFactory
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpUserClaimsPrincipalFactory.cs#L14
The session_id
is created by IdentitySessionClaimsPrincipalContributor(AbpIdentityProDomainModule Volo.Abp.Identity.Pro.Domain)
hi
Please try to remove DynamicLocalizationResourceContributor
and try again.
public override void ConfigureServices(ServiceConfigurationContext context)
{
PostConfigure<AbpLocalizationOptions>(options =>
{
options.GlobalContributors.Remove<DynamicLocalizationResourceContributor>();
});
}
: )
sure, liming.ma@volosoft.com
: )
hi
We have added the zizooo.elhor
to your organization. Can you recheck?
Thanks
hi
The GeoTicket.Blazor
is asp net core app now. so you can create a Dockerfile.local
for it.
example:
FROM mcr.microsoft.com/dotnet/aspnet:8.0
COPY bin/Release/net8.0/publish/ app/
WORKDIR /app
ENTRYPOINT ["dotnet", "GeoTicket.Blazor.dll"]