使用 Ninject 注入整数

发布于 2024-11-10 06:20:46 字数 508 浏览 4 评论 0原文

我有以下课程

public class Foo
{
  public Foo(int max=2000){...}
}

,我想使用 Ninject 向 Foo 中注入一个常量值。我已经尝试过此操作,

Bind<Foo>().ToSelft().WithConstructorArgument("max", 1000);

但当我尝试使用 _ninject.Get 时出现以下错误:

Error activating int
No matching bindings are available, and the type is not self-bindable.
Activation path:
  3) Injection of dependency int into parameter max of constructor of type Foo

I have folowing class

public class Foo
{
  public Foo(int max=2000){...}
}

and I want to use Ninject to inject a constant value into Foo. I have try this

Bind<Foo>().ToSelft().WithConstructorArgument("max", 1000);

but I get following error when I try to use _ninject.Get<Foo>:

Error activating int
No matching bindings are available, and the type is not self-bindable.
Activation path:
  3) Injection of dependency int into parameter max of constructor of type Foo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玉环 2024-11-17 06:20:46

以下对我有用:

    using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Ninject;
using Ninject.Activation;
using Ninject.Syntax;


    public class Foo
    {
        public int TestProperty { get; set; }
        public Foo(int max = 2000)
        {
            TestProperty = max;
        }
    }

    public class Program
    {

        public static void Main(string [] arg)
        {
              using (IKernel kernel = new StandardKernel())
              {
                 kernel.Bind<Foo>().ToSelf().WithConstructorArgument("max", 1000);
                  var foo = kernel.Get<Foo>();
                  Console.WriteLine(foo.TestProperty); // 1000
              }

        }
    }

the below works for me:

    using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Ninject;
using Ninject.Activation;
using Ninject.Syntax;


    public class Foo
    {
        public int TestProperty { get; set; }
        public Foo(int max = 2000)
        {
            TestProperty = max;
        }
    }

    public class Program
    {

        public static void Main(string [] arg)
        {
              using (IKernel kernel = new StandardKernel())
              {
                 kernel.Bind<Foo>().ToSelf().WithConstructorArgument("max", 1000);
                  var foo = kernel.Get<Foo>();
                  Console.WriteLine(foo.TestProperty); // 1000
              }

        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文