I'm working on a .Net project using Dapper as the ORM. EF is not really an option as we need the DB/schema to be somewhat flexible at runtime.
Using Dapper.Contrib we can use the 'change tracking' feature to optimise what gets written to the database. What we'd really like is to be able to access this information (what's changed) and write it to a 'change history' log.
There doesn't seem to be a lot of documentation in Dapper.Contrib about this. Has anybody got any suggestions on how this could be done? Thanks.