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.
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.
Multiple result sets can get especially squirrelly if the parent-level selection clauses involve child-level selection rules.
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.
Finally you end up with fewer hits on the database, and transaction management is simpler.
