Hi Jack,
You can access the original value of an entity's property using the details API. For example
partial void Customers_Updating(Customer entity)
{
var newValue = entity.Details.Properties.Name.Value;
var originalValue = entity.Details.Properties.Name.OriginalValue;
}
Section "Working with the save pipeline" in
this article will have more details about this.
Best regards,
Huy Nguyen