WPF/MVVM: How can I use several CollectionView`s for aggregated entities ?
- by msfanboy
Hello,
I have a Customer with Orders and those have products. Everything aggregated with collections of type ObservableCollection.
All 3 collections are bound to a datagrid/combobox.
I can only make the root collection (ObservableCollection Customers{ get;set;} )
passing to a CollectionView so I can move the current customer within the combobox.
But how can I move around the current Order in the datagrid? How to pass the selected Orders to another CollectionView ?
Does all this maybe not work?