getDirtyPropertyNames
Last updated
Was this helpful?
Get an array of property names that that have been changed from the original loaded session state.
An array of property names
entity
Any
Yes
---
The entity object
if( ormService.isDirty( entity ) ){
// The values have been modified
log.debug( "entity values modified", ormService.getDirtyPropertyNames( entity ) );
}Last updated
Was this helpful?
Was this helpful?