我正在使用container.RegisterType<IMail, Mail>(new HierarchicalLifetimeManager(),
new InjectionConstructor(new InjectionParameter<string>("SG.XXXX.....")));
在ASP.net Web API启动时将参数注入到类中,例如我将Sendgrid API密钥注入到邮件类中:
compile 'com.android.support:appcompat-v7:+'
但是对于多租户环境,我想为不同的租户提供不同的API密钥,存储在数据库中。
如何在运行时注入API密钥?