I am still fairly new to WPF, but thanks to all the resources available on the internet, I have been able to create a fairly decent (imho) presentation program. Before I began writing the program I looked at MVVM methodologies but didn't foresee my program getting as large as it did. Without going into too much detail, I have a listbox on one side that is populated with a list of properties. This is bound directly to my SQL CE database (v4.0), meaning that I need to refresh my listbox anytime changes are made to my properties. Orginally this was not an issue, but now I want to allow re-arrangement via drag and drop so I believe I will need to implement some form of observable collection to do this. Sorry if I am not making much sense, but from what I gather you can't rearrange objects directly in the database (or it isn't wise).
Basically, my issue is how do I implement an observable collection into my application, that is using my existing database for persistence? I am not worried about the work involved, so long as it is possible. Could I maybe use partial classes?
Cheers