A few days ago I created a github issue because our team detects severals errors in production environment (concurrency)
After migrating from version 5.1.3 to version 8.3.2, we are experimenting many concurrency control errors in our production environment (due to higher load). We noticed that when we retrieve an entity from database with IRepository... and its related data from the database (.Incude), saving the entity causes all the related entities retrieved from the database to also be modified (checked with LastModification property).
Since all of them have the "concurrency stamp" attribute, they are competing for priority when saving to the database.
99% of our entities has FullAuditedAggregateRoot inherits.
We think this is a bug introduced in version 8.2.0 because if an object is modified, its related classes should not be marked as modified when they have not been modified.
https://github.com/abpframework/abp/issues/21835
Today we execute a downgrade of nugets package version to 8.1.5 and ALL exceptions of type AbpDbConcurrencyException disappeared.