Autofac 到通用服务定位器(TypedParameter 问题)

发布于 2024-11-15 12:50:26 字数 447 浏览 3 评论 0原文

如何修改 Autofac 中的以下内容以使用公共服务定位器(其中 _context 的类型为 IComponentContext):

var query = _context.Resolve<IContentQuery>(TypedParameter.From<IContentManager>(this));

上面的代码取自 Orchard,我正在尝试删除对 Autofac 的依赖。通常我会尝试类似的方法:

var query = ServiceLocator.Current.GetInstance<IContentQuery>();

但是这会返回 null 并且我看不到如何处理 TypedParameter 的东西,因为我不明白它在做什么。

如果有人可以提供帮助,我将非常感激。谢谢

How do i modify the following from Autofac to use the Common Service Locator (where _context is of type IComponentContext):

var query = _context.Resolve<IContentQuery>(TypedParameter.From<IContentManager>(this));

The code above is taken from Orchard and and i'm trying to remove the dependency on Autofac. Usually i'd try something like:

var query = ServiceLocator.Current.GetInstance<IContentQuery>();

However this returns null and i can't see how to handle the TypedParameter stuff as i don't understand what it's doing.

I'd really appreciate it if someone could help. Thanks

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

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

发布评论

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

评论(1

雪化雨蝶 2024-11-22 12:50:26

TypedParameter 为正在解析的组件的构造函数提供附加值。在这种情况下,基础 ContextQuery 将接受类型为 IContentManager 的参数,并传递值 this

公共服务定位器不支持参数化,因此您可能需要使用底层 IoC 容器的特定功能。

希望这有帮助。
缺口

A TypedParameter provides an additional value to the constructor of the component being resolved. In this case the underlying ContextQuery will accept a parameter of type IContentManager with the value this being passed.

Common Service Locator doesn't support parameterisation, so you will probably need to use the specific features of your underlying IoC container.

Hope this helps.
Nick

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文