hi
Can you try again?
abp get-source Volo.LeptonTheme
hi
We will check this.
abp get-source Volo.LeptonTheme
hi
Can you share a simple project to reproduce? liming.ma@volosoft.com
This seems to have nothing to do with abp, have you tried it in other application without abp?
hi
Have you read this document?
https://docs.abp.io/en/abp/latest/Features
hi
Your EF Core has two DbContext right?
Can you share the detaisl? How do you configure your entity?
hi
Can you try this?
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IBlobContainerConfigurationProvider))]
public class MyBlobContainerConfigurationProvider : DefaultBlobContainerConfigurationProvider
{
public MyBlobContainerConfigurationProvider(IOptions<AbpBlobStoringOptions> options)
: base(options)
{
}
public override BlobContainerConfiguration Get(string name)
{
if (name == "MyBlobContainer")
{
var configure = base.Get(name);
var aws = configure.GetAwsConfiguration();
aws.AccessKeyId = "";
}
return base.Get(name);
}
}
hi
Please try to use AddSigningCredential and check your Data Protection.
https://docs.identityserver.io/en/latest/topics/startup.html#key-material https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview?view=aspnetcore-5.0