Open Closed

ABPDbConcurrencyException even with ConcurrencyStamp column present in table #9021


User avatar
0
priyankasynapxe created

ABP Framework version: v8.1.1

UI Type:React

Database System: EF Core (SQL Server)

Tiered (for MVC) or Auth Server Separated (for Angular): yes

Exception message and full stack trace:
image.png
Steps to reproduce the issue: Insert/update data

Hi, I have a process which was working fine but recently I have started getting ABPDbConcurrencyException, below is my class structure for which error is mentioned

public class PatientPhoneNumber_TR : FullAuditedAggregateRoot<Guid>
    {
        [CanBeNull]
        public virtual string PhoneNumber { get; set; }
        public long? PhoneTypeId { get; set; }
        public long? EquipmentTypeId { get; set; }
        public long? PatientId { get; set; }

        public PatientPhoneNumber_TR()
        {

        }

        public PatientPhoneNumber_TR(Guid id, string phoneNumber)
        {
            Id = id;
            Check.Length(phoneNumber, nameof(phoneNumber), PatientPhoneNumber_TRConsts.PhoneNumberMaxLength, 0);
            PhoneNumber = phoneNumber;
        }
    }

As, I'm using FullAuditedAggregateRoot, ConcurrencyStamp is there so concurrency should be handled, why am I getting the error, and how can I fix it? I cannot retry every time on exception as it is coming so frequently, it will impact the performance, we are getting 200k+ request for this function.


5 Answer(s)
  • User Avatar
    0
    EngincanV created
    Support Team .NET Developer

    Hi, can you please confirm that there is a situation as described in this answer or not?

  • User Avatar
    0
    priyankasynapxe created

    Hi, can you please confirm that there is a situation as described in this answer or not?

    Hi, it seems like very similar case as I was not getting this error earlier. It is happening when load is high, also in my case too we have upgraded the version last year, but my class structure is below

        public class PatientPhoneNumber_TR : FullAuditedAggregateRoot<Guid>
        {
        [CanBeNull]
        public virtual string PhoneNumber { get; set; }
        public long? PhoneTypeId { get; set; }
        public long? EquipmentTypeId { get; set; }
        public long? PatientId { get; set; }
        
          public PatientPhoneNumber_TR()
        {
    
        }
    
        public PatientPhoneNumber_TR(Guid id, string phoneNumber)
        {
            Id = id;
            Check.Length(phoneNumber, nameof(phoneNumber), PatientPhoneNumber_TRConsts.PhoneNumberMaxLength, 0);
            PhoneNumber = phoneNumber;
        }
    }  
    

    I'm using parent's id as FK in child table.

    Please let me know what can I do to fix it?

    I have noticed same issue on save token too (screenshot of error is attached below), please help to fix both.

    image.png

  • User Avatar
    0
    EngincanV created
    Support Team .NET Developer

    Hi, can you override the HandlePropertiesBeforeSave in your dbcontext class as below and try it, please?

        protected override void HandlePropertiesBeforeSave()
        {
            var entries = ChangeTracker.Entries().ToList();
            foreach (var entry in entries)
            {
                HandleExtraPropertiesOnSave(entry);
    
                if (entry.State.IsIn(EntityState.Modified, EntityState.Deleted))
                {
                    UpdateConcurrencyStamp(entry);
                }
            }
    
            foreach (var entry in AbpEfCoreNavigationHelper.GetChangedEntityEntries().Where(x => x.State == EntityState.Unchanged))
            {
                UpdateConcurrencyStamp(entry);
            }
        }
    

    Please let me know if it fixes your problem or not.

  • User Avatar
    0
    priyankasynapxe created

    protected override void HandlePropertiesBeforeSave()
    {
    var entries = ChangeTracker.Entries().ToList();
    foreach (var entry in entries)
    {
    HandleExtraPropertiesOnSave(entry);

            if (entry.State.IsIn(EntityState.Modified, EntityState.Deleted)) 
            { 
                UpdateConcurrencyStamp(entry); 
            } 
        } 
    
        foreach (var entry in AbpEfCoreNavigationHelper.GetChangedEntityEntries().Where(x => x.State == EntityState.Unchanged)) 
        { 
            UpdateConcurrencyStamp(entry); 
        } 
    } 
    

    Hi, as it is override in dbcontext class, can you please confirm if it can impact the performance?

  • User Avatar
    0
    EngincanV created
    Support Team .NET Developer

    protected override void HandlePropertiesBeforeSave()
    {
    var entries = ChangeTracker.Entries().ToList();
    foreach (var entry in entries)
    {
    HandleExtraPropertiesOnSave(entry);

            if (entry.State.IsIn(EntityState.Modified, EntityState.Deleted))  
            {  
                UpdateConcurrencyStamp(entry);  
            }  
        }  
    
        foreach (var entry in AbpEfCoreNavigationHelper.GetChangedEntityEntries().Where(x => x.State == EntityState.Unchanged))  
        {  
            UpdateConcurrencyStamp(entry);  
        }  
    }  
    

    Hi, as it is override in dbcontext class, can you please confirm if it can impact the performance?

    Hi, it should not impact performance. In our current version, this code is already implemented in the AbpDbContext implementation (I mean in v9.0+).

    Regards.

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 25, 2025, 11:10