Activities of "liangshiwei"

Answer

Hi,

You can try:

oAuthConfig: {
   ...
   clientId: 'Documentale_App',
   requireHttps: false
}

Hi,

The profile UI does not support object extension, you can customize it via https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement

Hi,

There is a problem, and we have fixed it. by the way, ticket returned.

For now try:

Open PermissionDefinitionProvider and add following code and grants email setting permission.

var setting = context.GetPermissionOrNull(SettingManagementPermissions.Emailing);
setting.MultiTenancySide = MultiTenancySides.Both;

You can safely remove this code when you upgrade to a new version

Answer

Hi,

We can have a metting: shiwei.liang@volosoft.com

Can you share the full logs?

Hi,

Can you provide steps to reproduce? thanks.

After my test, the following code is ok.

Configure<AbpDbContextOptions>(options =>
{

    options.Configure(c =>
    {
        c.UseSqlServer();
        c.DbContextOptions.UseTriggers(t =>
        {
            t.UseApplicationScopedServiceProviderAccessor(_ => _.CreateScope().ServiceProvider);
        });

    });
});

Hi,

Open EntityFrameworkCoreModule class and remove Configure<AbpDbContextOptions>... code block.

Open EntityFrameworkCoreDbMigrationsModule clsss and add following code:


context.Services.AddEFSecondLevelCache(options =>
    options.UseMemoryCacheProvider().DisableLogging(true).UseCacheKeyPrefix("EF_"));
    
Configure<AbpDbContextOptions>(options =>
{
    options.Configure(c =>
    {
        c.UseSqlServer(builder =>
        {
            builder.CommandTimeout((int) TimeSpan.FromMinutes(3).TotalSeconds)
                .MigrationsAssembly(typeof(QaEntityFrameworkCoreDbMigrationsModule).Assembly.FullName);
        }).AddInterceptors(c.ServiceProvider.GetRequiredService<SecondLevelCacheInterceptor>());
    });
});

Hi,

It looks like a problem, can you provide steps to reproduce? thanks. if there is a problem, we will fix it.

hi,

This way will be better

c.DbContextOptions.UseTriggers(t =>
{
    t.UseApplicationScopedServiceProviderAccessor(_ => _.GetRequiredService<IHttpContextAccessor>().HttpContext?.RequestServices);
});
Showing 5821 to 5830 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.