Loading Business Object Hierarchy with One Database Call - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:52:53Z http://stackoverflow.com/feeds/question/441532 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/441532/loading-business-object-hierarchy-with-one-database-call 3 Loading Business Object Hierarchy with One Database Call Element 2009-01-14T01:05:52Z 2009-01-14T04:45:34Z <p>Hi,</p> <p>I would like to know what the best practice for populating a business object hierarchy (parent/child/grandchild) structure is from a single database call.</p> <p>I can think of a couple ways to accomplish it off the top of my head such as:</p> <p>left-joining all the relations in my sql statement then use looping and logic to fill the business objects</p> <p><strong>or</strong> </p> <p>use several select statements and 1 datareader and use its NextResult() method to iterate through each result set and fill the corresponding BO's</p> <p>Just wondering what the best practice for this is</p> <p>I am using DAAB and c# for my DAL</p> <p>Thanks!</p> http://stackoverflow.com/questions/441532/loading-business-object-hierarchy-with-one-database-call/441541#441541 0 Answer by Allain Lalonde for Loading Business Object Hierarchy with One Database Call Allain Lalonde 2009-01-14T01:11:39Z 2009-01-14T02:27:03Z <p>DataReader NextResult is the best since the amount of data going over the pipe doesn't grow as quickly as the join approach can.</p> http://stackoverflow.com/questions/441532/loading-business-object-hierarchy-with-one-database-call/441605#441605 1 Answer by le dorfier for Loading Business Object Hierarchy with One Database Call le dorfier 2009-01-14T01:39:33Z 2009-01-14T01:47:00Z <p>I used to use multiple returned datasets, but the overhead, and the everchanging API's for it, finally let me to return to just using joins to return it all in one gulp. </p> <p>I keep an eye on the resultset sizes, but in the context of any app I've run into, it's not been an issue. I've not regretted doing so, overall, but YMMV.</p> <p>Multiple result sets can get especially squirrelly if the parent-level selection clauses involve child-level selection rules.</p> <p>This way handles all cases; splitting it up works sometimes, but you will end up needing single-set queries in some cases; and it's nice to have just one pattern - especially if you sometimes are stuck with refactoring from one to the other.</p> <p>Finally you end up with fewer hits on the database, and transaction management is simpler.</p> http://stackoverflow.com/questions/441532/loading-business-object-hierarchy-with-one-database-call/441638#441638 3 Answer by zendar for Loading Business Object Hierarchy with One Database Call zendar 2009-01-14T01:55:20Z 2009-01-14T02:04:00Z <p>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:</p> <ul> <li>fetching data from database</li> <li>populating business objects </li> </ul> <p>Fetching data from database is several magnitudes slower than creating objects in memory. Best way would be to construct select statements for fastest data access. </p> <p>Queries can be constructed in three ways:</p> <ul> <li>one large query that fetches everything in single execution - you'll get most complex SQL, and probably the fastest execution (depends on DB schema)</li> <li>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.</li> <li>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.</li> </ul> <p>You should decide which solution is acceptable. Some key points to consider:</p> <ul> <li>which SQL is easier to create and maintain - one large that fetches everything in single read or several smaller. </li> <li>when you choose on previous point, you should measure performance and make final decision </li> </ul> http://stackoverflow.com/questions/441532/loading-business-object-hierarchy-with-one-database-call/441685#441685 0 Answer by Daniel Auger for Loading Business Object Hierarchy with One Database Call Daniel Auger 2009-01-14T02:14:17Z 2009-01-14T04:45:34Z <p>Have you considered using an OR Mapper such as NHibernate? Eager loading can do what you ask in one call to the database. </p> <p>If an OR Mapper is not a choice, then I'd throw my vote behind datareader.NextResultSet. </p> http://stackoverflow.com/questions/441532/loading-business-object-hierarchy-with-one-database-call/441706#441706 0 Answer by Steven A. Lowe for Loading Business Object Hierarchy with One Database Call Steven A. Lowe 2009-01-14T02:25:12Z 2009-01-14T02:25:12Z <p>if all the rows are from the same table (or appear to be), then you can pull the data into a dataset with a unary relationship and ADO.NET will link up the hierarchy for you</p>