Use cases: I want to programmatically access the value of a form field prior to the update, for one of the following scenarios (just 2 examples, to illustrate the case)
a) I want to detect if the original value of a field has been changed in the form, before it's saved in the database b) I want to detect / prevent changing the field value in a very specific way, e.g. if a field value is set to "Approved", it should never change back to "Pending approval", etc.
Constraint: Ideally, I would prefer not to do another trip to the database (to check for the old value), for performance reasons.