Let me show u a simple problem with a solution, and then a more complex problem without a solution.
1) Imagine that I have a Shelf, which has a list of Products. I want to display a datagrid with the Products.
Solution: At View, I may insert a similar code at datagrid like this: "ItemSource = {Binding Products}". And then at ViewModel, I create an ObservableCollection property named "Products". Okay.
2) I have MANY shelves, and which one has many products. I want to display MANY datagrids one below each other. Each datagrid shows a list of products of one Shelf.
Now, how can I bind to MANY datagrids? It can be 3 datagrids. It can be 500 datagrids. How can I do this using MVVM?
Thanks. I hope u understood my question.