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;
});
hi
You can manage the features of Host and Tenant on the tenant page.
hi
Can you try the latest 6.0.2 project?
Or create a new 6.0.2 template project.
https://www.nuget.org/packages/Volo.Abp.Cli/6.0.2
hi
You need to enable the feature firrst.
https://docs.abp.io/en/commercial/latest/modules/identity/oauth-login?_ga=2.207428629.767741667.1672545643-1711217332.1670744857#how-to-enable-oauth-external-login
hi
// https://www.npgsql.org/efcore/release-notes/6.0.html#opting-out-of-the-new-timestamp-mapping-logic
AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true);
hi
You can move the business code into a service, and then use this service in the application service and Received method.