Reputation: 58863
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
Upvotes: 1
Views: 659
Reputation: 1062610
Wouldn't you just navigate?
from cust in ds.Customers
from order in cust.GetChildRows("CustomersOrders").Cast<Order>()
etc?
Upvotes: 1