Я понял, как создавать собственные атрибуты проверки.Фактически, метод Validate выполняется, когда я использую метод Seed для предварительного заполнения базы данных, и в случае неудачи он генерирует исключение.Однако проверка не работает для формы создания сущности.
Нужно ли мне что-то менять в HTML (форма бритвы)?
Это просто позволяет мне добавлять элементы, которые не работаютпроверка.
Код здесь:
namespace Data.Model
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
sealed public class YearsValidationAttribute : ValidationAttribute
{
// Internal field to hold the min value.
readonly int _years;
public int Years
{
get { return _years; }
}
public YearsValidationAttribute(int years)
{
_years = years;
}
public override bool IsValid(object value)
{
var years = (int)value;
bool result = true;
if (this.Years != null)
{
result = Years >= years;
}
return result;
}
public override string FormatErrorMessage(string name)
{
return String.Format(CultureInfo.CurrentCulture,
ErrorMessageString, name, Years);
}
}
}
public class Position
{
[DatabaseGenerated(System.ComponentModel.DataAnnotations.DatabaseGeneratedOption.Identity)]
public int PositionID { get; set; }
[Required(ErrorMessage = "Position name is required.")]
[StringLength(20, MinimumLength = 3, ErrorMessage = "Name should not be longer than 20 characters.")]
[Display(Name = "Position name")]
public string name { get; set; }
[Required(ErrorMessage = "Number of years is required")]
[Display(Name = "Number of years")]
[YearsValidationAttribute(5, ErrorMessage = "{0} value must be greater than {1} years.")]
public int yearsExperienceRequired { get; set; }
public virtual ICollection<ApplicantPosition> applicantPosition { get; set; }
}
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>Position</legend>
@Html.HiddenFor(model => model.PositionID)
<div class="editor-label">
@Html.LabelFor(model => model.name)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.name)
@Html.ValidationMessageFor(model => model.name)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.yearsExperienceRequired)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.yearsExperienceRequired)
@Html.ValidationMessageFor(model => model.yearsExperienceRequired)
</div>
<p>
<input type="submit" value="Save" />
</p>
</fieldset>
}