> > > In a less fluent way, this is already possible today: > > -------------------------------------------------- > UpdateQuery update = Factory.updateQuery(T_AUTHOR); > update.setRecord(author); > update.addConditions(T_AUTHOR.ID.equal(author.getId()); > update.execute(); >
It is already quite elegant indeed...
