rowversion3
All checks were successful
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Successful in 26s

This commit is contained in:
Tizian.Breuch
2025-11-20 15:19:34 +01:00
parent b86c006f25
commit 7a0e56e27a
7 changed files with 2780 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ namespace Webshop.Domain.Entities
public virtual ICollection<ProductDiscount> ProductDiscounts { get; set; } = new List<ProductDiscount>();
public virtual ICollection<Productcategorie> Productcategories { get; set; } = new List<Productcategorie>();
public virtual ICollection<ProductImage> Images { get; set; } = new List<ProductImage>();
[Timestamp] // Diese Annotation ist entscheidend!
[ConcurrencyCheck]
public byte[] RowVersion { get; set; }
}
}