使用 Structuremap 管理 ASP.NET MVC 中的 ObjectContext 生命周期
我想知道是否有一种方法或一篇好文章介绍如何通过 StructureMap 管理 objectcontext 生命周期(我看到了 ninject 的示例)。因为我对 SM 的方法和可能性很陌生,所以我真的不知道如何/如果可能的话。 首先,我想为每个 httpcontext 创建一个对象上下文的单例。 感谢您的任何建议。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是 StructureMap 的一个很好的起点
StructureMap:基本场景用法< /a>
它在对象生命周期管理器标题下讨论了对象生命周期。
还有另一个 StackOverflow 问题 'HybridHttpOrThreadLocalScoped 和 HybridHttpOrThreadLocalScoped 之间有什么区别? HttpContextScoped' 可以阐明 StructureMap 中的两个可用上下文。
这个问题被标记为“entity-framework”标签,但我大部分的经验都是使用 StructureMap,一些是使用 Ninject,现在我正在学习 AutoFac。
我知道这是一个老问题,但这是一个很好回答的问题。
The following is a good starting point for StructureMap
StructureMap: Basic Scenario Usage
which under the heading of Object Lifetime Manager, discusses object lifetime.
Also the other StackOverflow question 'What is the difference between HybridHttpOrThreadLocalScoped & HttpContextScoped' can shed some light on the two available context's in StructureMap.
This question was marked with "entity-framework" tag but I have most of my experience with StructureMap, some with Ninject, and now I'm learning AutoFac.
I know this is an old question but it's a good one to answer.