在C#中,可以使用数据注解和自定义验证器来有效验证模型。以下是一些常用的方法:
public class User
{
[Required]
public string Name { get; set; }
[Range(18, 99)]
public int Age { get; set; }
}
public class User : IValidatableObject
{
public string Name { get; set; }
public int Age { get; set; }
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
{
if (Age < 18 || Age > 99)
{
yield return new ValidationResult("Age must be between 18 and 99", new[] { nameof(Age) });
}
}
}
通过使用数据注解和自定义验证器,可以有效验证C#模型并确保数据的完整性和准确性。