私はこのように CustomValidationAttribute を使用しています
[CustomValidation(typeof(MyValidator),"Validate",ErrorMessage = "Foo")]
そして私のバリデータにはこのコードが含まれています
public class MyValidator { public static ValidationResult Validate(TestProperty testProperty, ValidationContext validationContext) { if (string.IsNullOrEmpty(testProperty.Name)) { return new ValidationResult(""); <-- how can I get the error message from the custom validation attribute? } return ValidationResult.Success; } }
では、カスタム検証属性からエラー メッセージを取得するにはどうすればよいでしょうか。