I am having some issues with binding to objects retrieved from NHibernate using lazy loading. I have read some on the issue and am confused on what I need to do to fix things here.
As I understand it the issue has to do with the way NHibernate handles the proxies for things that haven't been loaded yet. Has someone implemented NHibernate using lazy loading and INotifyPropertyChanged?
Right now INotifyPropertyChanged works if I disable lazy-loading, but otherwise no UI elements get updated if they are bound to things which are lazily loaded. I am already a bit in over my head with all of this and the proxy implementation is even more foreign to me so I am not exactly what it is I even need here. :) I am hoping that there is some reasonably simple solution.