我可以使用 StructureMap 将一些字符串(例如配置值)注入到 ASP.NET MVC 控制器中吗?
我使用 StructureMap 作为 ASP.NET MVC 网站的 IoC/DI。效果很好。
通常,我的控制器会传入接口和结构映射 + 贪婪构造函数 == 效果很好。
例如。
public void FooController : Controller
{
public FooController(IPewPew pewPew) { .. }
}
等等..
但是..我的一个控制器(只有一个控制器)想要传入两个字符串。
例如..
public void FooController2 : Controller
{
public FooController2(IPewPew pewPew, string aaa, string bbb) { .. }
}
有什么方法可以用StructureMap做到这一点吗?有没有办法说,当列出一个字符串“aaa”时,然后使用这个值=> "hi!";
我真的不想将所有这些字符串放入具有接口的具体类中。
就好像我想说类似的话。
For<string>().WithName("aaa").Use<string>().WithValue("hi");
干杯!
I'm using structureMap as my IoC/DI for an ASP.NET MVC web site. Works great.
Normally, I have my controllers that pass in Interfaces and structureMap + greedy constructors == works great.
eg.
public void FooController : Controller
{
public FooController(IPewPew pewPew) { .. }
}
etc..
But.. one of my controllers (and only one of em) would like to have two strings to be passed in.
eg..
public void FooController2 : Controller
{
public FooController2(IPewPew pewPew, string aaa, string bbb) { .. }
}
Is there any ways I can do this with StructureMap? Is there a way to say, when a string "aaa" is listed, then use this value => "hi!";
I didn't really want to put all those strings, into a concrete class with an interface.
It's like I want to say something like.
For<string>().WithName("aaa").Use<string>().WithValue("hi");
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对我有用:
This worked for me:
您可以注册一个
Func
委托,它允许您进行类型安全的注册。You can register a
Func<T>
delegate, which allows you to have a type safe registration.