ASP.NET MVC 3. 我需要担心容器处置吗?

发布于 2024-10-13 04:46:27 字数 244 浏览 4 评论 0原文

在 ASP.NET MVC 中,我需要显式处理(正如这里所述 http:// unity.codeplex.com/Thread/View.aspx?ThreadId=38588) 我的容器,其中的对象被处置。

有了 ASP.NET MVC 3 和原生 IoC 支持,我还需要担心吗?

At ASP.NET MVC, I need to Dispose explicitly(As said here http://unity.codeplex.com/Thread/View.aspx?ThreadId=38588) my Container, to objects inside it be Disposed.

With ASP.NET MVC 3 and native IoC support, I still need to worry about it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱娆 2024-10-20 04:46:27

有了 ASP.NET MVC 3 和本机 IoC 支持,我还需要担心吗?

是的,如果您使用第三方对象容器框架(例如 Unity)来管理对象的生命周期,您仍然需要担心这一点。但为了 100% 确定,在您的 Dispose 方法中放置一个断点,看看它是否在请求结束时被调用。

With ASP.NET MVC 3 and native IoC support, I still need to worry about it?

Yes, you still need to worry about it if you are using a third party object container framework such as Unity which manages the lifetime of your objects. But to be 100% sure put a breakpoint in your Dispose method and see if it gets called at the end of the request.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文