croudet wrote:
Have you tried with some 'left join fetch' on your many-to-one entities?
Code:
select distinct prospectiveCandidates from ProspectiveCandidates prospectiveCandidates
left join fetch prospectiveCandidates.position
left join fetch prospectiveCandidates.jobApplicant
left join fetch prospectiveCandidates.SourceResume
where
...
Christophe
Thank you christopher
I tried using this left join , but i cant see any change in the timings,
If i use left join then the sql query generated is also taking more time in sql client..
please suggest me some other ideas.