gpt4 book ai didi

c# - 在 Ninject 3.0 中使用默认参数值

转载 作者:可可西里 更新时间:2023-11-01 08:41:32 24 4
gpt4 key购买 nike

我有一个类,其构造函数的参数具有默认值。在 Ninject 2.2 中,它将遵循 [Optional] 属性,并且在没有定义绑定(bind)的情况下可以正常工作

public EmployeeValidator([Optional] IValidator<PersonName> personNameValidator = null)

自从升级到 Ninject 3.0 后,此对象的构建失败并显示一条消息,指出提供者返回了 null:

Test method ValidatorIsolated.Tests.EmployeeValidatorTest.CreateEmployeeValidatorTest threw exception:

Ninject.ActivationException: Error activating IValidator{PersonName} using conditional implicit self-binding of IValidator{PersonName}

Provider returned null.

Activation path:

2) Injection of dependency IValidator{PersonName} into parameter personNameValidator of constructor of type EmployeeValidator

1) Request for IValidator{Employee}

Suggestions:

1) Ensure that the provider handles creation requests properly.

当参数的默认值存在时,[Optional] 属性是否仍然有效?使用诸如此类的可选参数处理注入(inject)的最佳方法是什么?

最佳答案

在这种情况下,可选属性被忽略,因为始终有可用的默认值——但提供的值为空。默认情况下不允许使用 Null。

您可以通过将 NinjectSettings.AllowNullInjection 设置为 true 来覆盖此行为。

关于c# - 在 Ninject 3.0 中使用默认参数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10517962/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com