ASP.NETMVC:基于两个字段长度的DataAnnotation自定义验证方法
创始人
2024-11-12 05:30:16
0
  1. 首先,在需要自定义验证的Model中,添加需要验证的两个属性。

public class MyModel { public string Field1 { get; set; }

public string Field2 { get; set; }

}

  1. 接着,定义一个新的自定义ValidationAttribute类,命名为StringLengthComparisonAttribute,并继承ValidationAttribute类。

public class StringLengthComparisonAttribute : ValidationAttribute { private readonly string _dependentProperty; private readonly ComparisonOperator _comparisonOperator; private readonly int _dependentPropertyValue;

public StringLengthComparisonAttribute(string dependentProperty, ComparisonOperator comparisonOperator, int dependentPropertyValue)
{
    _dependentProperty = dependentProperty;
    _comparisonOperator = comparisonOperator;
    _dependentPropertyValue = dependentPropertyValue;
}

protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
    var dependentProperty = validationContext.ObjectType.GetProperty(_dependentProperty);
    if (dependentProperty == null)
    {
        return new ValidationResult($"Unknown property {_dependentProperty}");
    }

    var dependentPropertyValue = dependentProperty.GetValue(validationContext.ObjectInstance, null);

    if (!int.TryParse(dependentPropertyValue.ToString(), out int intDependentPropertyValue))
    {
        return new ValidationResult($"Property {_dependentProperty} is not of type int");
    }

    if (value == null)
    {
        return ValidationResult.Success;
    }

    var valueString = value.ToString();

    var dependentPropertyValueString = dependentPropertyValue.ToString();
    
    if(_comparisonOperator == ComparisonOperator.GreaterThan) 
    {
        if (valueString.Length > intDependentPropertyValue)
        {
            return new ValidationResult($"The length of {validationContext.DisplayName} must be greater than the length of {_dependentProperty}");
        }
    } 
    else if(_comparisonOperator == ComparisonOperator.LessThan) 
    {
        if (valueString.Length < intDependentPropertyValue)
        {
            return new ValidationResult($"The length of {validationContext.DisplayName} must be less than the length of {_dependentProperty}");
        }
    }
    
    return ValidationResult.Success;
}

}

在StringComparisonOperator枚举中定义比较运算符。

public enum ComparisonOperator { LessThan, GreaterThan }

  1. 最后,在需要验证的属性

相关内容

热门资讯

透视机巧!wepoker私人定... 透视机巧!wepoker私人定制透视(HHpoker内部)其实是有辅助方法(哔哩哔哩)1、进入游戏-...
透视总结!epoker底牌透视... 透视总结!epoker底牌透视(WPK四人)竟然有辅助技巧(哔哩哔哩)1.epoker底牌透视 选牌...
透视操作!德普辅助器怎么用(W... 透视操作!德普辅助器怎么用(WePoKer辅助器)一贯真的有辅助app(哔哩哔哩)透视操作!德普辅助...
透视诀窍!we poker辅助... 透视诀窍!we poker辅助器下载(WePoKer正版)一贯真的是有辅助教程(哔哩哔哩)在进入we...
透视步骤!wepoker有没有... 透视步骤!wepoker有没有挂(WePoKer私人局)一直是有辅助攻略(哔哩哔哩)1、每一步都需要...
透视讲义!wepoker透视脚... 透视讲义!wepoker透视脚本是什么(WPK辅助)确实真的是有辅助神器(哔哩哔哩)1、wepoke...
透视经验!poker worl... 透视经验!poker world辅助器(WePoKer h5)真是存在有辅助app(哔哩哔哩)pok...
透视诀窍!德州局怎么透视(HH... 透视诀窍!德州局怎么透视(HHpoker脚本)切实是真的有辅助工具(哔哩哔哩)小薇(辅助器软件下载)...
透视操作!we-poker软件... 透视操作!we-poker软件(HHpoker有用)总是有辅助app(哔哩哔哩)1、透视操作!we-...
透视法门!sohoopoker... 透视法门!sohoopoker辅助(WePoKer运气)原来有辅助攻略(哔哩哔哩)1、下载好soho...