且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

ASP.NET MVC脚手架视图-缺少模型属性

更新时间:2023-02-25 21:59:24

将属性设置器标记为内部时,脚手架将忽略它.只需将其从属性中删除,即可进行设置(双关语意):

When you mark the property setter as internal, the scaffolding ignores it. Simply remove that from the property and you should be set (pun intended):

public string ReviewerName { get; set; }