Autofac - 将属性注入 asp.net mvc 控制器
我有一个基本控制器,它继承了我的所有控制器。这个基本控制器有一些属性,我想使用属性注入来注入。
我的控制器注册看起来像这样,
builder.RegisterControllers(Assembly.GetExecutingAssembly()
我不知道如何访问基类并注入属性。
I have a base controller from which inherit all my controllers. This base controller has some properties I'd like to inject the using property injection.
My controller registration looks like this
builder.RegisterControllers(Assembly.GetExecutingAssembly()
I don't know how to access the base class and inject the properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这应该有效:
autofac 网站上的更多信息:http://code.google.com/p/autofac/维基/PropertyInjection
This should work:
Some more info on the autofac website: http://code.google.com/p/autofac/wiki/PropertyInjection
您可能需要考虑使用 Autofac 聚合服务:
You may want to consider using an Autofac Aggregate Service:
这对我有用:
This works for me:
尼克万的回答是正确的。只需确保
在注册所有依赖项之后即可。或者换句话说,就在构建容器之前。
所以最终的代码看起来像
nickvane's answer is correct. Just make sure
is after your all dependencies are registered. Or in other words, just right before you build your container.
So final code will look like
还需要调用 MVC:
对于 Web API:
Need to call also for MVC:
For Web API: