In many production scenarios, it’s possible for multiple people or automatic background tasks to access the same records at the same time. This can lead to conflicts in which contradictory data changes take place. This chapter shows how to detect and resolve such conflicts in Entity Framework Core.
A Look at the History of Concurrency
Like its predecessor Entity Framework and the underlying basic technology ADO.NET, Entity Framework Core does not support the blocking of data records for read access by other processes. This was a deliberate ...