How to convert IEnumerable to ObservableCollection?
IEnumerable
ObservableCollection
As per the MSDN
var myObservableCollection = new ObservableCollection(myIEnumerable);
This will make a shallow copy of the current IEnumerable and turn it in to a ObservableCollection.