我想在MVC控制器中使用named参数来解析依赖关系。如果我可以访问Autofac容器,我应该可以这样做:
var service = Container.Resolve<IService>( new NamedParameter("fileExtension",dupExt) );
我找不到如何访问AutoFac容器。有没有对我可以使用的容器的全局引用,还是有另一种使用命名参数的方式?
解决方法
我刚刚发现我可以使用IComponentContext做同样的事情。您可以将IComponentContext的实例注入到控制器中。
public class MyController : Controller { private readonly IComponentContext _icoContext; public void MyController(IComponentContext icoContext) { _icoContext= icoContext; } public ActionResult Index() { var service = _icoContext.Resolve<IService>( new NamedParameter("ext","txt") ); } }
在这个问题中,我已经找到了一些很好的建议来获取全局访问容器:
Autofac in web applications,where should I store the container for easy access?
我还发现如何在全球访问依赖关系解析器:Global access to autofac dependency resolver in ASP.NET MVC3?