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;
});
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.
hi
I can share some source code with you if you need it.