In my project we are facing performance related issues because of the DB design ,We cannot change the DB structure.
The issue is because we have 4 levels of nesting of objects with one to many relationships between them.
A (1-*) B (1-*) C (1-1) D
I cant lazy load them also I need to load all of them initially itself due to the project requirement.
If A had 10 rows, for each A row there were 10 rows in B and for each row in B if there were 10 rows in C and for each row in C we had one row in D.
Still it needs to make
Quote:
1+10+100+100 hits
, Is there any way to handle this scenario.
Please help me in handling this performance issue.
Thanks,
Venkat.