I'm a beginner with wpf app building and entity framework.
I'm building my first wpf app, I found out I should have replaced my auto-generated ICollection
with ObservableCollection
.
The problem is that I already did most of my code so far but am having some issues with INotifyPropertyChanged
. I see all the codes about INotifyPropertyChanged
use ObservableCollection
.
Is it bad if I go to my auto-generated code now and replace the ICollection
with ObservableCollection
? Will it mess up my app?