When I have a Parent->Child1->Child2 relationship and I call ToBindingList() on Child1, are the Child2 entities also converted to static data?
For example,
Customer->Order->OrderDetail
I want to convert all the orders for a customer into a BindingList. Each Order has multiple OrderDetail entries. Do I need a separate call to make the OrderDetail Tables static?
Brian