This is a big problem for me. I want to write a WPF / MVVM application that retrieves data from an online WCF service.
The problem is that the sampling process should be, say, 15 seconds (this is a time critical application).
This uses a constantly changing IEnumerable, every time I check the WCF service, I get different values, because there is also time data.
How would I do that? Clearing an ObservableCollection in a ViewModel may not be right or is it?
source
share