绑定源刷新

发布于 2024-07-27 13:17:27 字数 527 浏览 4 评论 0原文

我有 2 个类,即 CustomerOrderCustomer 类 具有对订单集合的引用。 我使用主详细信息 BindingSource

我的问题是当我使用延迟加载模式时 对于订单,我的详细信息 BindingSource 未更新。

UI

BindingSource1.datasource = GetCustomers();
BindingSource2.DataMember = "Orders";
BindingSource2.datasource = BindingsSource1;

因此,在我的 datagridView1 Click 事件中,

if (customer.orders != null)
{
  customer.Orders = LoadOrders();
}

我感谢任何帮助。

I have 2 classes i.e CustomerOrder and Customer class
has a reference to a collection of orders.
I use master detail BindingSources.

My problem is when I use the lazy load pattern
for orders my detail BindingSource is not updated.

UI

BindingSource1.datasource = GetCustomers();
BindingSource2.DataMember = "Orders";
BindingSource2.datasource = BindingsSource1;

So in my datagridView1 Click event

if (customer.orders != null)
{
  customer.Orders = LoadOrders();
}

I appreciate any help with this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏佲洛 2024-08-03 13:17:27

尝试重置绑定:

BindingSource1.DataSource = GetCustomers();
BindingSource2.DataMember = "Orders";

BindingSource2.DataSource = BindingSource1;
BindingSource2.ResetBindings(true);

Try reseting the binding:

BindingSource1.DataSource = GetCustomers();
BindingSource2.DataMember = "Orders";

BindingSource2.DataSource = BindingSource1;
BindingSource2.ResetBindings(true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文