私はモデルを持っています:
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 のみが必要です display(label)。これを行う方法?
更新:属性を使用する必要があります