Windsor 的等效项取决于 StructureMap

发布于 2024-12-02 22:26:44 字数 112 浏览 2 评论 0原文

如何在 StructureMap 中动态注入构造函数参数,例如 Windsor Dependson,我可以将所有 Property[] 传递给它..甚至 AutoFac 也有 Resolveparamter..

How to inject the Construtor Arguments dynamically in the structureMap Something like Windsor Dependson where i can Pass all the Property[] to it.. Even AutoFac has Resolveparamter..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往事随风而去 2024-12-09 22:26:44

我不太熟悉 AutoFac 或 Windsor,但是在查看了每个示例之后,我认为您正在寻找用于注入参数的结构映射构造:

For<IMyType>.Use<MyType>.Ctor<string>("parameterName").Is("parameterValue");

I am not well versed in either AutoFac or Windsor, but after looking at examples of each I think you're after this structure map construct for injecting parameters:

For<IMyType>.Use<MyType>.Ctor<string>("parameterName").Is("parameterValue");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文