I have in my mapping an association to an eagerly loaded collection (lazy="false" fetch="subselect"). How can I turn that off programmatically with Hibernate when I do a query?

Thanks

link

62% accept rate
feedback

1 Answer

up vote 2 down vote accepted

In fact, it is supposed to be the other way around. You turn it off in the mapping, and activate it on specific use cases with a "fetch" in the query.

That's the way the Hibernate team sees it. There is no way in Hibernate to create a request that specifies "no-fetch" for a property...

link
That's what I thought as well. I was just trying my luck if there's such a way to do it. Thanks – Franz See Sep 3 '09 at 14:00
You're very welcome. Is there something else that you need to consider your question as answered? I mean to accept the answer. – KLE Sep 3 '09 at 14:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.