There is no universal recipe. It depends on database schema, database size and number of records your application reads in typical scenario. You have two processes here:
- fetching data from database
- populating business objects
Fetching data from database is several magnitudes slower than creating objects in memory. Best way would be to construct select statements for fastest data accessto data.
Queries can be constructed in three ways:
- one large query that fetches everything in single execution - you'll get most complex SQL, and probably the fastest execution (depends on DB schema)
- master/detail approach - simple queries. lots of traffic to database. This is acceptable only if you fetch small number of records, otherwise it is very slow.
- hybrid: one query for each layer of hierarchy. Consider this approach if previous two methods are to slow. This approach requires more complex logic for populating business objects.
You should decide which solution is acceptable. Some key points to consider:
- which SQL is easier to create and maintain - one large that fetches everything in single read or several smaller.
- when you choose on previous point, you should measure performance and make final decision
