vote up 1 vote down star

I have 2 classes i.e Customer-Order 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

flag
Is this .NET? Sounds like WinForms but please Tag it as such. – Henk Holterman Jul 18 at 15:09
Have you tried to reassign it? – bassfriend Jul 18 at 15:12

1 Answer

vote up 0 vote down

Try reseting the binding:

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

BindingSource2.DataSource = BindingSource1;
BindingSource2.ResetBindings(true);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.