Hi All, I posted on Stack Overflow previously as I was having trouble with the NHibernateIntegration facility in Windsor when working alongside Castle Windsor 3. The question is located at:
http://stackoverflow.com/questions/8557327/castle-windsor-3-fluent-nhibernate-castle-nhibernate-integration I have since recompiled the NHibernateIntegration Facility DLL file with a few changes to get it working and was wondering if this is worth creating a patch for? The changes are: For src\Castle.Facilities.NHibernateIntegration\Internal \SessionFactoryActivator.cs: Before: public override object Create(CreationContext context) After: public override object Create(CreationContext context, Burden burden) For src\Castle.Facilities.NHibernateIntegration\Internal \NHSessionComponentInspector.cs Before: model.Dependencies.Add(new DependencyModel(DependencyType.Service, null, typeof(NHSessionInterceptor), false)); After: model.Dependencies.Add(new DependencyModel(null, typeof(NHSessionInterceptor), false)); Thanks, Ross. -- You received this message because you are subscribed to the Google Groups "Castle Project Development List" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/castle-project-devel?hl=en.
