Ninject从IBinding中获取目标类型

时间:2012-04-20 08:51:36

标签: c# dependency-injection inversion-of-control ninject

我有一个由多种类型实现的接口。但在我做kernel.GetAll<IAmServiceable>()之前,我希望能够思考注射的目标类型。

我知道函数kernel.GetBindings(typeof(IAmServiceable))存在,但这会返回IBinding的列表。

有谁知道如何从IBinding获取目标类型?

我希望在实例化之前知道绑定到IAmServiceable的类型。

3 个答案:

答案 0 :(得分:11)

我知道你的问题现在可能有点晚了,但是因为我今天遇到了这个问题,我认为其他人也可能会这样。

这就是我最终提出的代码 - 我认为它不完美(远离它),特别是关于性能,但它适用于我的情况,因为我不打算经常调用这种方法,它对我来说似乎没问题。

public Type GetBoundToType(IKernel kernel, Type boundType)
{
    var binding = kernel.GetBindings(boundType).FirstOrDefault();
    if (binding != null)
    {
        if (binding.Target != BindingTarget.Type && binding.Target != BindingTarget.Self)
        {
            // TODO: maybe the code  below could work for other BindingTarget values, too, feelfree to try
            throw new InvalidOperationException(string.Format("Cannot find the type to which {0} is bound to, because it is bound using a method, provider or constant ", boundType));
        }

        var req = kernel.CreateRequest(boundType, metadata => true, new IParameter[0], true, false);
        var cache = kernel.Components.Get<ICache>();
        var planner = kernel.Components.Get<IPlanner>();
        var pipeline = kernel.Components.Get<IPipeline>();
        var provider = binding.GetProvider(new Context(kernel, req, binding, cache, planner, pipeline));
        return provider.Type;
    }

    if (boundType.IsClass && !boundType.IsAbstract)
    {
        return boundType;
    }
    throw new InvalidOperationException(string.Format("Cannot find the type to which {0} is bound to", boundType));
}

答案 1 :(得分:3)

这是不可能的。例如,在这种情况下是什么类型的?

Bind<IX>().ToMethod(c => RandomBool() ? new Foo() : new Bar());

答案 2 :(得分:0)

如果您使用的是NinjectModule(或者可以通过其他方式访问IKernel),那么一种很好的简单方法是:

var concreteType = Kernel.Get<InterfaceType>().GetType();

显然,缺点是您创建了具体类型的实例。不过,它很好而且很简单,我认为它很健壮。显然,如果接口是从IDisposable派生的,则可以使用using语句:

using(var obj = Kernel.Get<InterfaceType>())
{
    var concreteType = obj.GetType();
    .
    .
    .
}