Using your northwind example with adapter mode. It appears to have an grid(_ordersGridView) bound to a bindingsource(_ordersBinder) which is bound to an EntityCollection component(_ordersDesignerCollection).
The grid is populated by this code _ordersGridView.DataSource = selectedCustomer.Orders;
My question is :
Is thie the best method of binding the data to the grid?
What is the use of _ordersBinder and _ordersDesignerCollection when you are setting the datasource without using the binded components?
Am i missing something?