User1085970526 posted
That article doesn't seem to be about multiple recordsets
Say I had a sproc like this:
create proc usp_getOrder @orderNo int
select * from ordertable where orderno= @orderNo
select * from address where orderNo = @orderNo
select * from litem where orderNo = @orderNo
This will hit the DB once and return three recordsets.
I'd love for it to return a nice, hierarchical tree of objects so I could do something like this:
lblState.Text = myOrder.Address.State;
Of course, I'm lazy so I want the framework to do as much of this as possible for me because I don't want to write lots of code that I'll need to maintain later.