This is a big issue for me. I want to write a WPF / MVVM application that fetches data from an online WCF service.
Problem is, that the fetching process must be every, say, 15 seconds (it's a time critical application).
There is an everchanging IEnumerable involved, every time I check the WCF service, I WILL get different values, because there is also time data involved.
How would I go about that? Clearing the ObservableCollection in the ViewModel can't be right, or is it?