MEF 与 Unity 导入视图模型
使用 Unity 时,您可以在视图模式的构造函数中导入容器。
但是我该如何将 MEF 容器导入视图模型来解析实例呢?
谢谢
When using unity you can import the container in the constructor of a view moder per say.
But how would I do import a MEF container into a view model to resolve instances?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,绕过容器并不是一个好主意,因为您最终将其更多地用作服务定位机制,但如果您希望这样做,则需要手动导出容器,例如:
这将使您能够导入它:
或者:
Generally, it is not a great idea to be passing round the container, as you end up using it as more of a service-location mechanism, but should you wish to do so, you would need to manually export the container, e.g.:
This will enable you to import it:
Or: