特定の文字列プロパティの長さが指定された値を超えていないことを確認します。
文字列に対してのみ有効です。 property
文字列形式 args:
{PropertyName} = 検証されるプロパティの名前
{MaxLength} = 最大長
{TotalLength} =入力された文字数
{PropertyValue} = プロパティの現在の値
特定の文字列プロパティの長さが指定された値よりも長いことを確認します。
文字列プロパティでのみ有効です
{PropertyName} = 検証されるプロパティの名前
{MinLength} = 最小の長さ
{TotalLength} =入力された文字数
{PropertyValue} = プロパティの現在の値
static void Main(string[] args){ List errors = new List(); PersonModel person = new PersonModel(); person.FirstName = "TestUser444"; person.LastName = "TTT"; PersonValidator validator = new PersonValidator(); ValidationResult results = validator.Validate(person); if (results.IsValid == false){ foreach (ValidationFailure failure in results.Errors){ errors.Add(failure.ErrorMessage); } } foreach (var item in errors){ Console.WriteLine(item); } Console.ReadLine(); } } public class PersonModel{ public string FirstName { get; set; } public string LastName { get; set; } } public class PersonValidator : AbstractValidator{ public PersonValidator(){ RuleFor(p => p.FirstName).MaximumLength(7).WithMessage("MaximumLength must be 7 {PropertyName}") ; RuleFor(p => p.LastName).MinimumLength(5).WithMessage("MinimumLength must be 5 {PropertyName}"); } }
MaximumLength must be 7 First Name MinimumLength must be 5 Last Name
以上がFluent Validation を使用して C# でプロパティの最小長と最大長の検証を確認するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。