Activities of "liangshiwei"

Answer

Hi,

okay, we will consider this

Hi,

after my check, replacing modules requires changes to database tables. It may be troublesome to migrate data.

you can try this

public class MySettingDefinitionProvider : SettingDefinitionProvider
{
    public override void Define(ISettingDefinitionContext context)
    {
        var enableLocalLoginSetting = context.GetOrNull("Abp.Account.EnableLocalLogin");

        if (enableLocalLoginSetting != null)
        {
            enableLocalLoginSetting.DefaultValue = "false";
        }
    }
}

Hi

Using AsyncHelper.RunAsync is possibly not a good idea as I think it could lead to deadlocks; however I cannot prove that this is happening.

AsyncHelper is designed for this situations, so it won't be a problem.

The last comment in the thread https://abp.io/support/questions/6409/Mobile-MAUI-Android-Release-build-stuck-on-splash said "we'll update the template according to this information, thanks for this key point" and yet 8 months later GetClaimsPrincipal still isn't async.

Unfortunately, this is the framework's design, and it's not easy to change it.

I will test it locally

i refunded your ticket

HI,

Yes, this is a problem. see https://github.com/abpframework/abp/issues/20680

you can downgrade the ng.schematics package to 7.4.x as a temporary solution

Hi,

may I ask is the Redis Server available?

Hi,

you can check ABP how do use it. https://github.com/abpframework/abp/blob/dev/modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo/Abp/AuditLogging/EntityFrameworkCore/EfCoreAuditLogRepository.cs#L235

Answer

The CLI expects the DTOs namespace to start with or be consistent with the application service's namespace.

xxx.IdentityService.Controllers xxx.IdentityService.Interfaces.Services xxx.IdentityService.Dtos

change them to :

xxx.IdentityService.Services xxx.IdentityService.Services xxx.IdentityService.Services.Dtos

Answer

please share the <YourServiceUrl>/api/abp/api-definition?IncludeTypes=true result with me

my email is shiwei.liang@volosoft.com

EntityChangeWithUsername is not an entity, just a class

Showing 491 to 500 of 5968 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11