Hi to all,
I'm developing a MVVM Application, I have a global context for application, I have a provider class that exposes me a method that returns a List<MyModel>
MyModel is a class that I use internally in application:
My entityframework context (EF5 & FW4.0) exposes MyTable (this table corresponde to MyModel class).
My provider get IQuarable<MyTable> by linq and convert all items in MyModel, then return List<MyModel>.
Now, If I have a lot of records and I have to show all items into ComboBox, I could user VirtualQueryableCollectionView.
But how can I use List<MyModel> to do this? I will get the same result?