I'm handling events to create an audit log of changes in the database (insert, update, delete). In the OnUpdated event, I can use Args.NewColumnValues and Args.OldColumnValues, but I haven't found a way to retrieve these values for OnInserted and OnDeleted.
Is it possible to retrieve Args.NewColumnValues in OnInserted similar to how it works in OnUpdated (i.e., the fields and values of the inserted record)?
Similarly, can I retrieve Args.OldColumnValues in OnDeleted (the fields and values of the deleted record)?