TIL: How to automatically insert and update audit fields with OrmLite

from blog Just Some Code, | ↗ original
This post is part of my Advent of Code 2022. These days I had to work with OrmLite. I had to follow the convention of adding audit fields in all of the database tables. Instead of adding them manually, I wanted to populate them when using OrmLite SaveAsync() method. This is how to automatically insert and update audit fields with OrmLite. 1....