Activities of "maliming"

Answer

hi

Can you try to add the AbpAccountClaimsPrincipalFactory?

https://github.com/abpframework/abp/issues/8888#issuecomment-833167705

hi

You can consider to use IAsyncQueryableExecuter, it's target to netstandard2.0.

https://docs.abp.io/en/abp/latest/Repositories#option-3-iasyncqueryableexecuter

hi

Maybe you can try show the meessage on its events. For example, onClose.

https://docs.abp.io/en/abp/latest/UI/AspNetCore/Modals#functions https://docs.abp.io/en/abp/latest/UI/AspNetCore/Modals#events

hi

https://github.com/abpframework/abp/issues/9366#issuecomment-869247128

hi

SqliteConnection does not support nested transactions.

You can disable the transaction in unit test, This is a limitation of sqlite, we can only do this.

Configure<AbpUnitOfWorkDefaultOptions>(options =>
{
    options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled;
});

hi Because Microsoft's EntityFrameworkCore also only supports net standard 2.1.

hi I think you can customize a IOptions implementation, You can refer to OptionsMonitor.

IOptions<FhirOptions>

Deleted. : )

hi

Please remove the options.ConventionalControllers.Create(typeof(AbpAccountAdminHttpApiModule).Assembly,...

You cannot change the API version in the module. You can only control your own API.

Add below to HttpApi.Host project.

context.Services.Configure<ApiVersioningOptions>(options =>
{
    options.UseApiBehavior = false;
});

Add below to Web project.

context.Services.AddApiVersioning();

hi

I will check your project asap.

Showing 9271 to 9280 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