SrSouza
03/06/2019, 4:52 PMdaoObj.name = "new Name"
transaction(database) {
daoObj.update()
}
Something like this have?tapac
03/06/2019, 7:05 PMSrSouza
03/06/2019, 8:20 PMtapac
03/06/2019, 9:00 PMflush
daoObj.name = "new Name"
transaction(database) {
entityCache.store(daoObj) // will be persisted at the end of `transaction` block
daoObj.flush() // will be persisted immidiatly
}
SrSouza
03/06/2019, 9:06 PM