Persisting a Castle DynamicProxy that's not associated with a NH Session
问题 My session uses an NHInterceptor to add INotifyPropertyChanged support to models. // I use the session generated here to fetch Data public class SessionServiceImpl : ISessionService { [Inject] public ISessionFactory SessionFactory { get; set; } [Inject] public NhChangeNotificationInterceptorImpl ChangeNotificationInterceptor { get; set; } public ISession GetSession() // reduced code here { return SessionFactory.OpenSession(ChangeNotificationInterceptor); } } // This is the interceptor