Tagged Questions
26
votes
3answers
6k views
Linq for NHibernate and fetch mode of eager loading
Is there a way to set the fetchmode to eager for more than one object using linq for nhibernate. There seems to be an expand method which only allows me to set one object. However I need to set it for ...
3
votes
1answer
2k views
Hibernate: Overriding mapping's EAGER in HQL?
It's possible to override LAZY in HQL using LEFT JOIN FETCH.
FROM Obj AS obj LEFT JOIN FETCH obj.otherObj WHERE obj.id = :id
Is it also possible to override EAGER? How?
0
votes
0answers
231 views
FetchType.Eager is unable to fetch, FetchType.LAZY is also not working
Hi I've made two entity classes named Designaton.java and Module.java. In Designation class there is a toMany relationship. I tried to Fetch data using FetchType.EAGEr as well as FetchType.LAZY also, ...