Unity按名称解析

发布于 2024-10-08 18:59:42 字数 379 浏览 1 评论 0原文

我有以下 Service 类构造函数:

public class Service : IService
{
    private readonly IRepository _repository;

    public Service(IRepository repository)
    {
        _repository = repository;
    }

    // ...
}

IRepository 有两个命名实现。我想解决 IService 但需要设置应使用哪个 IRepository 实现(服务应该灵活,我不能将 Dependency 属性放入 IRepository 构造函数参数)。

有没有办法用Unity来实现呢?

I have the following Service class constructor:

public class Service : IService
{
    private readonly IRepository _repository;

    public Service(IRepository repository)
    {
        _repository = repository;
    }

    // ...
}

IRepository has two named implementations. I want to Resolve IService but need to set which IRepository implementation should be used (Service should be flexible and I can't put Dependency attribute to IRepository constructor parameter).

Is there any way to implement it by Unity?

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

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

发布评论

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

评论(1

忘你却要生生世世 2024-10-15 18:59:42

您可以使用统一配置部分来实现此目的。
检查链接。

在配置部分中,您可以指定映射,如下所示。

 <type type="IMyService" mapTo="MyDataService" name="DataService">
      <typeConfig extensionType="Microsoft.Practices.Unity.Configuration.TypeInjectionElement,
                                 Microsoft.Practices.Unity.Configuration">
        <constructor>
          <param name="connectionString" parameterType="string">
            <value value="AdventureWorks"/>
          </param>
          <param name="logger" parameterType="ILogger">
            <dependency />
          </param>
        </constructor> 
        <property name="Logger" propertyType="ILogger" />
        <method name="Initialize">
          <param name="connectionString" parameterType="string">
            <value value="contoso"/>
          </param>
          <param name="dataService" parameterType="IMyService">
            <dependency />
          </param>
        </method>
      </typeConfig>
    </type>

You can use the unity config section to achieve this.
Check this link.

In the config section you can specify the mapping as follows.

 <type type="IMyService" mapTo="MyDataService" name="DataService">
      <typeConfig extensionType="Microsoft.Practices.Unity.Configuration.TypeInjectionElement,
                                 Microsoft.Practices.Unity.Configuration">
        <constructor>
          <param name="connectionString" parameterType="string">
            <value value="AdventureWorks"/>
          </param>
          <param name="logger" parameterType="ILogger">
            <dependency />
          </param>
        </constructor> 
        <property name="Logger" propertyType="ILogger" />
        <method name="Initialize">
          <param name="connectionString" parameterType="string">
            <value value="contoso"/>
          </param>
          <param name="dataService" parameterType="IMyService">
            <dependency />
          </param>
        </method>
      </typeConfig>
    </type>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文