使用Unity改变构造函数注入的字符串参数

时间:2011-11-18 19:06:19

标签: c# dependency-injection unity-container

我的目标是改变字符串参数:

Container
 .RegisterInstance<string>("us", @"\\ad1\accounting$\Xml\qb_us.xml")
 .RegisterInstance<string>("intl", @"\\ad1\accounting$\Xml\qb_intl.xml");

driver = Container.Resolve<LoaderDriver>(args[1]); // "us" or "intl"

结果是:

Resolution of the dependency failed, type = "QuickBooksService.LoaderDriver", name = "intl".
Exception occurred while: while resolving.
Exception is: InvalidOperationException - The type String cannot be constructed. You must configure the container to supply this value.
-----------------------------------------------
At the time of the exception, the container was:

  Resolving QuickBooksService.LoaderDriver,intl
  Resolving parameter "reader" of constructor QuickBooksService.LoaderDriver(QuickBooksService.LoaderInputReader reader, QuickBooksService.ILoader[] loaders)
    Resolving QuickBooksService.LoaderInputReader,(none)
    Resolving parameter "inputFile" of constructor QuickBooksService.LoaderInputReader(System.String inputFile, AccountingBackupWeb.Models.AccountingBackup.Company company, Qu
ickBooksService.eTargets targets)
      Resolving System.String,(none)

这显然是错误的,但这是我能让它发挥作用的唯一方法:

if (args[1] == "us")
    Container
        .RegisterType<LoaderInputReader>(
            new InjectionConstructor(
                @"\\ad1\accounting$\Xml\qb_us.xml",
                new ResolvedParameter<Company>(),
                new ResolvedParameter<eTargets>()
            )
        )
    ;
else if (args[1] == "intl")
    Container
        .RegisterType<LoaderInputReader>(
            new InjectionConstructor(
                @"\\ad1\accounting$\Xml\qb_intl.xml",
                new ResolvedParameter<Company>(),
                new ResolvedParameter<eTargets>()
            )
        )
    ;
else
    throw new Exception("invalid company");

driver = Container.Resolve<LoaderDriver>();

2 个答案:

答案 0 :(得分:2)

这样的事情应该有效:

container
    .RegisterType<LoaderInputReader>(
        "us",
        new InjectionConstructor(
            @"\\ad1\accounting$\Xml\qb_us.xml",
            new ResolvedParameter<Company>(),
            new ResolvedParameter<eTargets>()));
container
    .RegisterType<LoaderInputReader>(
        "intl",
        new InjectionConstructor(
            @"\\ad1\accounting$\Xml\qb_intl.xml",
            new ResolvedParameter<Company>(),
            new ResolvedParameter<eTargets>()));

这为LoaderInputReader的每个注册命名。现在你可以这样解决:

var us = container.Resolve<LoaderInputReader>("us");
var intl = container.Resolve<LoaderInputReader>("intl");

答案 1 :(得分:0)

也许你可以改变

driver = Container.Resolve<LoaderDriver>(args[1]); // "us" or "intl"

driver = Container.Resolve<LoaderDriver>(Container.Resolve<string>(args[1]))

这利用了Resolve overload that takes a name,在你的情况下,名字来自你的论点。