所以我正在使用Ninject,特别是上下文绑定如下:
Bind<IBlah>().ToMethod(x => FirstBlahProvider.Instance.GiveMeOne()).WhenTargetHas<FirstAttribute>().InRequestScope();
Bind<IBlah>().ToMethod(x => SecondBlahProvider.Instance.GiveMeOne()).WhenTargetHas<SecondAttribute>().InRequestScope();
我需要使用内核来获取给定的实例,并希望根据条件WhenTargetHas<T>
来实现。像下面这样的东西会很棒。
var myblah = Kernal.Get<IBlah>(x => x.HasWithTarget<FirstAttribute>)
如何根据条件检索实例?
答案 0 :(得分:0)
找出答案:
最好避免使用WhenTargetHas<T>
代替WithMetaData(key, value)
所以
Bind<IBlah>().ToMethod(x => FirstBlahProvider.Instance.GiveMeOne()).WhenTargetHas<FirstAttribute>().InRequestScope();
Bind<IBlah>().ToMethod(x => SecondBlahProvider.Instance.GiveMeOne()).WhenTargetHas<SecondAttribute>().InRequestScope();
成为:
Bind<IBlah>().ToMethod(x => FirstBlahProvider.Instance.GiveMeOne()).WithMetaData("Provider", "First);
Bind<IBlah>().ToMethod(x => SecondBlahProvider.Instance.GiveMeOne()).WithMetaData("Provider", "Second");
然后,您需要创建一个继承Ninject ConstraintAttribute的Attribute,并在构造函数参数中使用该属性。
作为:
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = true, Inherited = true)]
public class FirstProviderConstraint : ConstraintAttribute
{
public override bool Matches(IBindingMetadata metadata)
{
return metadata.Has("Provider") && metadata.Get<string>("Provider") == "First";
}
}
然后在构造函数arg中使用它:
public class Consumer([FirstProviderConstraint] IBlah)
{
...
}
或从内核解析
Get<ISession>(metaData => metaData.Get<string>(BindingKeys.Database) == BindingValues.OperationsDatabase)
我需要解决作用域,但是当你有多个绑定时,这就是你如何满足内核中的构造函数注入和显式解析。