使用.NET Core DI和运行时参数?

时间:2019-02-20 19:52:10

标签: c# .net-core

我已经使用Echo接口创建了一个简单的IEcho类(出于简洁):

 public interface IEcho
    {
        string Value { get; set; }
    }

    public class Echo : IEcho
    {
        public Echo(string s  )
        {
            Value = s;
        }

        public string Value { get; set; }
    }

基本上,它将返回与ctor中提供的值相同的值。

我将其注册为:

public IEcho Echo { get; }

private void ConfigureServices(IServiceCollection serviceCollection)
    {
        serviceCollection.AddTransient<IEcho >(a=>new Echo("Hey"));
    }

确实有效:

enter image description here

问题:

"Hey"值是在编译时提供的。

如何在运行时而不是编译时发送"Hey"值?

1 个答案:

答案 0 :(得分:2)

创建一个IEchoFactory并注入它。

interface IEchoFactory
{
    IEcho GetEcho( string text );
}

class EchoFactory : IEchoFactory
{
    public IEcho GetEcho(string text)
    {
        return new Echo(text);
    }
}


serviceCollection.AddTransient<IEchoFactory, EchoFactory>();

在接收注入的代码中,而不是

var t = _echo.Value;  //Assuming _echo is populated via injection

使用

var e = _echoFactory.GetEcho("String determined at runtime"); 
var t = e.Value;