如何使用 StructureMap 将 null 作为接口的默认实例传递?

发布于 2024-09-03 20:49:55 字数 824 浏览 6 评论 0原文

我想使用 StructureMap 将 null 作为 IFarmManager 类的默认实例传递。目前,我的 Global.asax 中有以下内容:

ObjectFactory.Initialize(x =>
{
    x.ForRequestedType<IFarmManager>().TheDefault.Is.Object(null);
};

然而,运行时抛出 ArgumentNullException:

Value cannot be null.
Parameter name: anObject
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: anObject

是否可以使用 null 作为接口的默认实例?

我知道这个问题:StructureMap 并将 null 参数传递给实例 但它没有任何答案。

I'd like to pass null as the default instance of my IFarmManager class using StructureMap. I've currently got the following in my Global.asax:

ObjectFactory.Initialize(x =>
{
    x.ForRequestedType<IFarmManager>().TheDefault.Is.Object(null);
};

However, an ArgumentNullException is thrown at runtime:

Value cannot be null.
Parameter name: anObject
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: anObject

Is it possible to use null as the default instance for an Interface?

I'm aware of this question: StructureMap and passing null parameter to instance but it doesn't have any answers.

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

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

发布评论

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

评论(1

守护在此方 2024-09-10 20:49:55

看来这样做的方法如下:

ObjectFactory.Initialize(x =>
{
    x.ForRequestedType<IFarmManager>().TheDefault.Is.ConstructedBy(() => null);
});

It seems the way to do it is as follows:

ObjectFactory.Initialize(x =>
{
    x.ForRequestedType<IFarmManager>().TheDefault.Is.ConstructedBy(() => null);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文