I have searched the whole internet looking for solution w/o result. In my program, I have UI thread where I display in two datagrids Customers and Orders. Orders are displayed for selected customer. Definition of collections and their update happens in the background. UI purpose is only to display up to date information. I take advantage of the latest functionality introduced in C# 4.5 that is: BindingOperations.EnableCollectionSynchronization method. In my program I have class Customers that defines a collection of Customer class. In turn Customer class defines a collection of Order class. My problem is that I do not know how to properly code the last line of below code which relates to Order collection binding synchronisation. This code is simplified that is I omitted OnPropertyChange code lines to ensure proper properties display in data grid - I want to focus on collections.
public class Customers()
{
private ObservableCollection<Customer> _customerslist;
public ObservableCollection<Customer> customerslist
{get {
if (_customerslist == null)
{_customerslist = new ObservableCollection<Customer>();}
return _customerslist;
}private set
{_customerslist = value;}}
}
public class Customer
{
public customerID;
public customerName;
.....
private ObservableCollection<Order> _orderslist;
public ObservableCollection<Order> orderslist
{get {if (_orderslist == null)
{_orderslist = new ObservableCollection<Order>();}
return _orderslist;
} private set
{_orderslist = value;}}
}
public class MainWindow : Window
{
private static object _syncLockCustomers = new object();
private static object _syncLockOrders = new object();
public MainWindow()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var firstCustomer = Customers.customerslist.FirstOrDefault();
custDataGrid.DataContext = Customers.customerslist;
if (firstCustomer != null)
{
custDataGrid.SelectedItem = firstCustomer;
ordersDataGrid.DataContext = firstCustomer.Orders.orderslist;
}
BindingOperations.EnableCollectionSynchronization(Customers.customerslist, _syncLockCustomers);
BindingOperations.EnableCollectionSynchronization(Orders <-what should be here ?, _syncLockOrders);
}
}
See Question&Answers more detail:os