将Structuremap MVC 5添加到ASP.NET MVC项目中。我希望每个请求都有一个 singleton 我的数据库连接 - 我的控制器将共享相同的数据库连接。我在这里实现了存储库模式,需要每个控制器都有一个相应存储库的副本。我知道这是可能的,但我认为我错过了或误解了错误。
我有一个控制器," Bag,"需要一个" IBagRepo"
public class BagController : Controller
{
private readonly IBagRepo repo;
public BagController(IBagRepo repo)
{
this.repo = repo;
}
// actions
}
我的第一次尝试是在ControllerConvention中挂钩单例数据库连接,因为我假设它被调用一次
public class ControllerConvention : IRegistrationConvention {
public void Process(Type type, Registry registry) {
if (type.CanBeCastTo<Controller>() && !type.IsAbstract) {
// Tried something like
registry.For(type).Singleton().Is(new ApplicationDbContext()); // this
registry.For(type).LifecycleIs(new UniquePerRequestLifecycle());
}
}
}
但很明显,这不是进行此更改的正确文件。我进入了安装nuget包时自动生成的注册表类,并试图摆弄它。
public class DefaultRegistry : Registry {
#region Constructors and Destructors
public DefaultRegistry() {
Scan(
scan => {
scan.TheCallingAssembly();
scan.WithDefaultConventions();
scan.With(new ControllerConvention());
});
// httpContext is null if I use the line below
// For<IBagRepo>().Use<BagRepo>().Ctor<ApplicationDbContext>().Is(new ApplicationDbContext());
}
#endregion
}
我还没有看到这样的问题。我在DefaultRegistry
班级内传递了正确的类型吗?
答案 0 :(得分:1)
如果你一直在使用StructureMap.MVC5 nuget:https://www.nuget.org/packages/StructureMap.MVC5/,那么你想要的实际上是默认行为。只要您的DbContext使用默认生命周期注册,该包就会使用每个http请求的嵌套容器,这有效地将DbContext范围限定为工作单元范围的HTTP请求。
与MVC&amp; EF,但我在这篇博文中描述了FubuMVC + RavenDb与StructureMap的类似机制:http://jeremydmiller.com/2014/11/03/transaction-scoping-in-fubumvc-with-ravendb-and-structuremap/
答案 1 :(得分:0)
我结束了覆盖默认控制器工厂而不使用结构图