how to update domain with hql that has nested property?
how to update domain with hql that has nested property?
I have RaceRegistration class that has a property of type Participant which has attribute bibNumber. I would like to set all bibNumbers belonging to an event to null. The following hql doesn's work. It is giving the error. So it looks like it cannot recognize r.participant.bibNumber.
node to traverse cannot be null!. Stacktrace follows:
java.lang.IllegalArgumentException: node to traverse cannot be null!
How can i update nested attribute of a domain class?
RaceRegistration.executeUpdate("update RaceRegistration r set r.participant.bibNumber = null" +
"where compositeEvent=:comp", [comp: compositeEvent ])
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.