hi
Can you try this?
https://github.com/abpframework/abp/commit/fa8e2f3db571041bdb87c3489a4a8502fe956200
hi
Can you create a new template project and reproduce the problem and share the project?
liming.ma@volosoft.com
hi
You can send an email, I will check your project remotely.
liming.ma@volosoft.com
No problem.
hi
Now it is only possible to customize AccountAppService to cancel sending emails.
hi
It is only supported after 6.0.
https://github.com/abpframework/abp/pull/13100 https://engincanv.github.io/abp/2022/08/02/extending-the-application-configuration-endpoint.html
hi
Can you debug the unit test method to confirm the MyUnitOfWorkManager is working?
We will solve this problem in the next version, but disabling transactions may cause some features to be unavailable, such as roll back will not working.
I personally do not recommend you use sqlite as a complex business database.
https://github.com/abpframework/abp/issues/15320
ok, I will confirm again.
hi
This is like a limitation of sqlite. It doesn't support transactions very well.
You can disable the Transaction
Configure<AbpUnitOfWorkDefaultOptions>(options =>
{
options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled;
});