如何使用kernel.Get创建一个带有ninject的对象,用于具有特定属性的绑定?

时间:2014-07-26 02:35:16

标签: c# ninject

对于我正在编写的测试,我想创建一个使用属性分类的ninject对象。例如,我可以通过这个测试吗?

using Ninject;
using NUnit.Framework;
using System;

namespace TestProject
{
    public class RedAttribute : Attribute { }
    public class BlueAttribute : Attribute { }

    public class TestClass
    {
        public string Str;

        public TestClass([Blue] String str)
        {
            Str = str;
        }
    }
    [TestFixture]
    public class SimpleTest
    {

        [Test]
        public void TestFunction()
        {
            IKernel kernel = new StandardKernel();

            kernel.Bind<string>()
                .ToMethod(context => "Red String")
                .WhenTargetHas<RedAttribute>();

            kernel.Bind<string>()
                .ToMethod(context => "Blue String")
                .WhenTargetHas<BlueAttribute>();
            kernel.Bind<TestClass>().ToSelf();

            // this works fine
            TestClass testC = kernel.Get<TestClass>();
            Assert.That(testC.Str, Is.EqualTo("Blue String"));

            // but I can't get the below to work
            // Ideally I would like something statically typed, eg
            // string str = kernel.Get<string, BlueAttribute>();
            string str = "TODO ?????";
            Assert.That(str, Is.EqualTo("Blue String"));

        }
    }
}

1 个答案:

答案 0 :(得分:0)

代码kernel.Get<string, BlueAttribute>();会变得非常复杂。 你可以做点什么

var request = new Request(
    null,
    typeof (string),
    new ParameterTarget(
        "get method/constructor by reflection",
        "get parameter info of parameter with [Blue attribute]"),
    x => (object)null);
string str = kernel.Resolve(request).OfType<string>().Single();

您也可以创建动态类型而不是编写动态类型并使用反射来获取构造函数/参数信息。或者您可以使用IL发射来创建一个。

但我认为创建假类更简单。实际上你不需要kernel.Bind<TestClass>().ToSelf();,因为它是一个可实例化的类,ninject可以在没有绑定的情况下解析它。