Hi y'all,
I'm following the doc
http://docs.jboss.org/hibernate/core/3. ... batch.html to bulk update the objects but I'm in a different situation, my objects to be updated are already in the hibernate session, I don't need to query it again, how could i use this bulk update?
Let me clarify it.
This is the situation: there is a @OneToMany relationship between Box and Product cascade={}. What I'm trying to do is to query this Box by its number, get the Set of products, make changes in theses products and then bulk update'em.
clear enough? =)
thanks in advance