views:

245

answers:

1

Can someone provide an example of linq querying various nested tables in a dataset? I can't find something like that on the net. Thanks

+1  A: 

Wouldn't you just navigate?

from cust in ds.Customers
from order in cust.GetChildRows("CustomersOrders").Cast<Order>()

etc?

Marc Gravell