我有 2 个类,即CustomerOrder
类Customer
有一个订单集合的引用。我使用 master detail BindingSource
s。
我的问题是当我对订单使用延迟加载模式时,我的详细信息BindingSource
没有更新。
用户界面
BindingSource1.datasource = GetCustomers();
BindingSource2.DataMember = "Orders";
BindingSource2.datasource = BindingsSource1;
所以在我的datagridView1
点击事件中
if (customer.orders != null)
{
customer.Orders = LoadOrders();
}
我很感激这方面的任何帮助。