Activities of "maliming"

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.

  • ABP Framework version: vX.X.X
  • UI type: Angular / MVC / Blazor
  • DB provider: EF Core / MongoDB
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no

hi

I can share some source code with you if you need it.

Showing 7111 to 7120 of 8483 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56