Is it possible to add to the library support for triggers that are triggered only when certain columns in the table are updated?
expected sql of such a trigger:
CREATE TRIGGER trg_update_trigger
AFTER UPDATE OF column1 ON your_table
FOR EACH ROW
EXECUTE FUNCTION your_update_function();
syntax how it would look like:
modelBuilder.Entity<YourEntity>()
.AfterUpdateOf(x => x.column1
.Action(x => x.ExecuteRawSql("some sql")));