Код: Выделить всё
public SomeViewModel : BaseViewModel
{
public string Products { get; set; }
...
}
public class Products
{
public string Ident { get; set; }
public string Name { get; set; }
public ICollection
Providers { get; set; }
}
public class Provider
{
public string Name { get; set; }
public string Address { get; set; }
}
Примерно так:

Как это можно сделать?
Подробнее здесь: https://stackoverflow.com/questions/797 ... tion-items