比較する 2 つのプロパティを次に示します。
[Required]
[Display(Name = "Current Password")]
public string Current { get; set; }
[Required]
[Compare("New")]
[Display(Name = "New Password")]
public string New { get; set; }
検証メッセージは次のようになります。
'Confirm Password' and 'New' do not match.
New
この属性を取得して、プロパティの表示名を使用するにはどうすればよいですか?