I am using SQLite embedded in a .Net Desktop application developed with WPF.
SQLite provides a callback for any write operation performed to the database (within the same connection) ref
In this callback, it provides the following which leads to the records being affected
- Event (Insert /Update/Delete)
- Table Name
- Row Id
I am looking for a NoSQL alternative that also provides such callback and could be embedded in a desktop application targeting .Net Framework 4.8
I like the lightweight LiteDB but couldn't find data changes callback support