Activities of "maliming"

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

public async Task ConfigureMenuAsync(MenuConfigurationContext context)
{
    //resolve Solution App Service dependency
    _solutionsAppService = context.ServiceProvider.GetRequiredService<ISolutionsAppService>();

    //resolve Project App Service dependency
    _projectsAppService = context.ServiceProvider.GetRequiredService<IProjectsAppService>();

    if (context.Menu.Name == StandardMenus.Main)
    {
        await ConfigureMainMenuAsync(context);
    }
}
public async Task ConfigureMenuAsync(MenuConfigurationContext context)
{
    if (context.Menu.Name == StandardMenus.Main)
    {
        //resolve Solution App Service dependency
        _solutionsAppService = context.ServiceProvider.GetRequiredService<ISolutionsAppService>();

        //resolve Project App Service dependency
        _projectsAppService = context.ServiceProvider.GetRequiredService<IProjectsAppService>();

        await ConfigureMainMenuAsync(context);
    }
}

I have reproduced the problem and checking it.

We have to ensure that all projects in the microservice use the same DefaultPassPhrase

hi

https://zoom.us/j/96635720506?pwd=TXlqSmVqRGhIWEVBQmF6MEt0cFlBQT09

Showing 9171 to 9180 of 10645 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20