注入属性不适用于字段

发布于 2024-10-28 23:16:41 字数 191 浏览 0 评论 0原文

注入属性不适用于字段。

[Inject]
public MyContext context; //Not injected

[Inject]
public MyContext context {get; set;} //Injected

我正在使用默认的 Ninject 设置。为什么字段没有注入?

Inject attribute is not working for field.

[Inject]
public MyContext context; //Not injected

[Inject]
public MyContext context {get; set;} //Injected

I am using default Ninject settings. Why field is not injected ?

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

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

发布评论

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

评论(1

寄风 2024-11-04 23:16:41

因为这是不允许的。

来自 Ninject 2 Beta 公告

Ninject 1.x 中的内容
不在 Ninject 2 中:

  • 场注入:Ninject 2
    注射现在由表达驱动
    树,而在 .NET 3.5 中没有办法
    使用表达式设置字段值
    树。因为这是一个不好的做法
    不管怎样,我决定把它剪掉。

Because it is not allowed.

From the Ninject 2 Beta announcement:

Things that were in Ninject 1.x that
are not in Ninject 2:

  • Field injection: Ninject 2’s
    injection is now driven by expression
    trees, and in .NET 3.5 there is no way
    to set field values with an expression
    tree. Since this is a bad practice
    anyway, I decided to cut it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文