I have a WPF application that uses ObservableCollection objects for binding data. The problem I am having is that I very often need to insert data at the beginning of the collection, making for a very inefficient solution. Preferably, I would like a solution that functions like an ObservableLinkedList<>
, if there was an implementation in the .net library.
One thread on StackOverflow advises against this. What is a reasonable and robust solution for my problem?
Thanks