I am working on a WPF application using the MVVM pattern that depends on WPF's rich databinding. It uses the "ObservableCollection" to expose collections from the ViewModel (Presenter) to the view. In your ViewModel class, you modify the collections directly and use WPF's databinding to update the view.
The collections in LLBLGen don't seem to support the ObservableCollection and requires us to use .ToList() to use and LLBLGen collecions.
I have looked all over for more info on LLBLGens observable collection support with little luck.
Does LLBLGen support ObservableCollections? Is there a way to convert an IEntityCollection2 into an ObservableCollection.
I am glad to see that the Entity objects support INotifyChanged but that's only part of the issue for me.