bricelam / bricelam.github.io

Highlighting some of my more technical adventures
bricelam.net
3 stars 2 forks source link

SQLite and EF Core Concurrency Tokens #31

Closed utterances-bot closed 1 year ago

utterances-bot commented 3 years ago

SQLite and EF Core Concurrency Tokens | Brice’s Blog

Entity Framework Core has great built-in support for optimistic concurrency control. The best way to utilize this on SQL Server is via a rowversion column. Unfortunately, SQLite has no such feature. This post shows how to implement similar functionality using a trigger.

https://www.bricelam.net/2020/08/07/sqlite-and-efcore-concurrency-tokens.html

sin39rus commented 3 years ago

Great article. Many thanks!

ahape commented 3 years ago

This is neat. Helped me solve this dilemma. Thanks!