Open
Description
Description
Propose and implement a mechanism for handling concurrency conflicts in the application, using EF Core’s concurrency control. This is necessary to ensure data consistency when multiple users are trying to modify the same data simultaneously.
Acceptance Criteria
- Propose a strategy (optimistic vs pessimistic concurrency).
- Implement the chosen concurrency control mechanism in the Data layer.
- Write unit tests to ensure proper conflict resolution.
- Document the concurrency handling process.