Will Ninject call dispose and close the NHibernate

2019-03-25 19:26发布

I'm using ASP.NET MVC 3 with Ninject and NHibernate.

When thinking of DI, i think the one who get the resource also makes sure to close it(In this case Ninject should be responsible)

But I'm not sure how Ninject works when using InRequestScope.

My code is:

Bind<ISession>().ToMethod(context => context.Kernel.Get<ISessionFactory>().OpenSession()).InRequestScope();

I open a session and put it in I InRequestScope, but will Ninject take of closing my ISession when it is out of request scope?

1条回答
家丑人穷心不美
2楼-- · 2019-03-25 20:01

If I understand the code correctly the answer is yes. One of the ActivationStrategies used by Ninject is the DisposableStrategy, whose Deactivate method, calls Dispose on anything that implements IDisposable. If you're using the Ninject.Web.MVC extensions, the OnePerRequestModule will automatically clear the binding cache. This will call the Deactivate method on all the ActivationStrategies including the DisposableStrategy.

Since ISession implements IDisposable, it will be disposed. The default implementation of ISession, SessionImpl, closes the Session on Dispose.

If you're not using the Ninject.Web.MVC extensions the Cache will eventually be cleared, but may not happen right at EndRequest.

查看更多
登录 后发表回答