我有一个模型:
public class SomethingViewModel
{
[Required]
[Display(Name = "Customer")]
public string SomethingName { get; set; }
[Required]
[Display(Name = "Something id")]
public string SomethingId { get; set; }
}
我需要为其创建一个视图,Html.EditorForModel
但我需要仅显示SomethingName 字段(标签)。这个怎么做?
更新:我需要使用属性