从我的保存人一开始,我就有一个<条码>。 IEvidable<T>。
在“Ctor”或“我的看法”的方法中,我想把我的实体归纳为“。 ObservableCollection<T>
as this:
private ObservableCollection<CustomerViewModel> customerViewModels;
public BillingViewModel(IService service)
{
...
IEnumerable<Customer> customers = service.GetCustomers();
// that will not work because of a different type
customerViewModels = new ObservableCollection(customers);
}
你会做些什么?