结构图 2.6.2 范围界定
我正在将应用程序从 Structure Map 2.5.3 移动到 2.6.2,但遇到了一些范围界定问题。
在 2.5.3 版本中,我使用 CacheBy(InstanceScope.HttpContext) 来在 Http 请求结束时释放实例。现在,在 2.6.2 中,我尝试了 HybridHttpOrThreadLocalScoped 和 HttpContextScoped,但我注入的实例没有被释放。
有什么解决办法吗?
I'm moving my application from Structure Map 2.5.3 to 2.6.2 and I'm having some scoping problems.
In 2.5.3 version I used CacheBy(InstanceScope.HttpContext)
to have instances disposed at the end of Http request. Now in 2.6.2 I tried both HybridHttpOrThreadLocalScoped
and HttpContextScoped
but my injected instances do not get disposed.
Any solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那些未处理的类位于另一个项目中,仍然引用 2.5.3。修复参考后现在工作正常:)
Those classes which were not disposed were in another project still referencing 2.5.3. It works fine now after fixing the references :)