Hi wolli,
The below is my hql Query
Code:
Select distinct c from BenefitDtlsDto bd join bd.Claims c join c.ClaimsProc cp join c.AdjClaimDtls ad where 1=1 and c.MemberBenefitId=bd.PrimaryKey and cp.DateService between '01/01/2009' and '01/30/2009' and c.ProgramId =1 and ad.OfficeId =10510
I have an entity with the name of
BenefitDtlsDto and it has mapping with the 3 tables. all the table has more than 25 Lakh record.
My question is
Quote:
Like banking or large scale application, can we get the very good performance while fetching the record when compare to SQL Procedures/Command(Compiled Statement)
.