Implementing optimistic concurrency with EF Core
Entity Framework Core provides built-in support for optimistic concurrency control but it only works during the lifetime of the context when in most realistic scenarios it needs to work across a longer period that involves a roundtrip to the client app and back the server. »