首页 > 其他 > 详细

自定义验证(判断两个值同时唯一)

时间:2015-05-19 18:08:10      阅读:269      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Web;
using BLL.BLL;

namespace www.nabian.com.Models
{
    public class NameAndBearchValidation : ValidationAttribute
    {
        RegisterManagerBLL manager = new RegisterManagerBLL();
        public string OtherProperty { get; set; }
        public string OtherPropertyDisplayName
        {
            [CompilerGenerated]
            get
            {
                return OtherPropertyDisplayName;
            }
            [CompilerGenerated]
            internal set
            {
            }
        }
        public override bool RequiresValidationContext
        {
            get
            {
                return RequiresValidationContext;
            }
        }
        public NameAndBearchValidation(string otherProperty)
        {
            if (otherProperty == null)
                throw new ArgumentNullException("otherProperty");

            OtherProperty = otherProperty;
        }
        protected override ValidationResult IsValid(object value, ValidationContext validationContext)
        {
            var property = validationContext.ObjectType.GetProperty(OtherProperty);
            var other = property.GetValue(validationContext.ObjectInstance, null);
            if (manager.QueryComName(value.ToString()) <= 0 && manager.QueryComName(other.ToString(), value.ToString()) <= 0)
            {
                return ValidationResult.Success;
            }
            return ValidationResult.Success;
        }
    }
}

  测试

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using www.nabian.com.Models;

namespace www.nabian.com.ViewsModels
{
    public class textModel
    {
        [NameAndBearchValidation("comName", ErrorMessage = "两个属性不唯一")]
        public string name { get; set; }

        public string comName { get; set; }
    }
}

  

自定义验证(判断两个值同时唯一)

原文:http://www.cnblogs.com/liuchang/p/4514860.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!