在ASP.NET MVC(3)中,是否有任何属性可以强制视图生成器不显示属性

发布于 2025-01-02 09:04:10 字数 138 浏览 0 评论 0原文

我有一个具有一些属性的模型,但我只需要其中一些在列表视图等视图中显示,我还需要在创建或编辑视图中显示所有属性,以便我可以创建完整的数据覆盖行,是否有任何属性强制生成器不在列表视图中显示属性。像这样的东西[Display(false)]

I have a model with some properties, but I just need some of them display in views like List view, also I need to display all of the properties in create or edit views so I can create a full data covered rows, is there any attribute to force the generator to don't display properties in List View. some thing like this [Display(false)] ?

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

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

发布评论

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

评论(2

巴黎夜雨 2025-01-09 09:04:10

Anwar 很接近,它是 [ScaffoldColumn(false)]

Anwar was close, it's [ScaffoldColumn(false)]

丿*梦醉红颜 2025-01-09 09:04:10

装饰你的属性

using System.ComponentModel.DataAnnotations;
[ScaffoldColumn(false)]

Decorate your attribute with

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