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 10161 to 10170 of 11539 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.