绑定 ToConstant 和调用 InSingletonScope 是多余的吗?

发布于 2024-12-04 09:05:29 字数 329 浏览 3 评论 0原文

嗯,这个问题从标题就已经很简单地说明了。

对于局部变量factory

var factory = Fluently.Configure()
...

这两行是否等效:

Bind<ISessionFactory>().ToConstant(factory).InSingletonScope();

和:

Bind<ISessionFactory>().ToConstant(factory);

Well, this question is pretty simply stated by the title.

For a local variable factory:

var factory = Fluently.Configure()
...

Are these two lines equivalent:

Bind<ISessionFactory>().ToConstant(factory).InSingletonScope();

and:

Bind<ISessionFactory>().ToConstant(factory);

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

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

发布评论

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

评论(1

亢潮 2024-12-11 09:05:29

在最新版本的 ninject 中,当您创建 ToConstant 绑定时,它会自动将 Scope 设置为 Singleton。因此,示例中的 InSingletonScope() 部分是多余的。来自 ninject 代码库:

    /// <summary>
    /// Indicates that the service should be bound to the specified constant value.
    /// </summary>
    /// <param name="value">The constant value.</param>
    public IBindingWhenInNamedWithOrOnSyntax<T> ToConstant(T value)
    {
        Binding.ProviderCallback = ctx => new ConstantProvider<T>(value);
        Binding.Target = BindingTarget.Constant;
        Binding.ScopeCallback = StandardScopeCallbacks.Singleton;

        return this;
    }

In the latest version of ninject, when you create a ToConstant binding it will automatically set the Scope to Singleton. Thus, the InSingletonScope() part in your example is redundant. From ninject code base:

    /// <summary>
    /// Indicates that the service should be bound to the specified constant value.
    /// </summary>
    /// <param name="value">The constant value.</param>
    public IBindingWhenInNamedWithOrOnSyntax<T> ToConstant(T value)
    {
        Binding.ProviderCallback = ctx => new ConstantProvider<T>(value);
        Binding.Target = BindingTarget.Constant;
        Binding.ScopeCallback = StandardScopeCallbacks.Singleton;

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