Unity 中温莎城堡的 DependsOn 等效项是什么?
我将 DependsOn 用于静态依赖项,例如连接字符串。 Unity Fluent 界面的等效功能是什么?
I use DependsOn for static dependencies such as connection strings. What is the equivalent function for Unity's Fluent interface?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以直接在 RegisterType 调用中将该值作为参数或属性的值传递。
例如,如果您有此类:
您可以像这样配置它:
它会将该整数传递给采用单个 int 的构造函数。如果您传递了 DateTime,它会调用另一个构造函数。
You can just pass the value directly in the RegisterType call as the value for a parameter or property.
For example, if you have this class:
You could configure this like so:
and it'll pass that integer to the constructor that takes a single int. If you'd passed a DateTime instead, it'd call the other constructor.