热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

MVC日期比较(转)

Specifiesthatthefieldmustcomparefavourablywiththenamedfield,ifobjectstocheckarenotofthes

 ///

    /// Specifies that the field must compare favourably with the
named field, if objects to check are not of the same type

    /// false will be return

    ///

    public class CompareValuesAttribute :
ValidationAttribute

    {

        ///

        /// The other property to compare to

        ///

        public string OtherProperty { get; set; }

 

        public CompareValues Criteria { get; set;
}

 

        ///

        /// Creates the attribute

        ///

        /// The other
property to compare to

        public CompareValuesAttribute(string
otherProperty, CompareValues criteria)

        {

            if (otherProperty == null)

                throw new
ArgumentNullException("otherProperty");

 

            OtherProperty =
otherProperty;

            Criteria = criteria;

        }

 

        ///

        /// Determines whether the specified value of
the object is valid.  For this to be the case, the objects must be of the
same type

        /// and satisfy the comparison criteria. Null
values will return false in all cases except when both

        /// objects are null.  The objects will
need to implement IComparable for the GreaterThan,LessThan,GreatThanOrEqualTo
and LessThanOrEqualTo instances

        ///

        /// The value of the
object to validate

        /// The
validation context

        /// A validation result if the
object is invalid, null if the object is valid

        protected override ValidationResult
IsValid(object value, ValidationContext validationContext)

        {

            // the the other property

            var property =
validationContext.ObjectType.GetProperty(OtherProperty);

 

            // check it is not null

            if (property == null)

                return new
ValidationResult(String.Format("Unknown property: {0}.", OtherProperty));

 

            // check types

            var memberName =
validationContext.ObjectType.GetProperties().Where(p =>
p.GetCustomAttributes(false).OfType().Any(a => a.Name
== validationContext.DisplayName)).Select(p =>
p.Name).FirstOrDefault();

            if (memberName == null)

            {

                memberName =
validationContext.DisplayName;

            }

            if
(validationContext.ObjectType.GetProperty(memberName).PropertyType !=
property.PropertyType)

                return new
ValidationResult(String.Format("The types of {0} and {1} must be the same.",
memberName, OtherProperty));

 

            // get the other value

            var other =
property.GetValue(validationContext.ObjectInstance, null);

 

            // equals to comparison,

            if (Criteria ==
CompareValues.EqualTo)

            {

                if
(Object.Equals(value, other))

                   
return null;

            }

            else if (Criteria ==
CompareValues.NotEqualTo)

            {

                if
(!Object.Equals(value, other))

                   
return null;

            }

            else

            {

                // check that both
objects are IComparables

                if (!(value is
IComparable) || !(other is IComparable))

                   
return new ValidationResult(String.Format("{0} and {1} must both implement
IComparable", validationContext.DisplayName, OtherProperty));

 

                // compare the
objects

                var result =
Comparer.Default.Compare(value, other);

 

                switch
(Criteria)

                {

                    case
CompareValues.GreaterThan:

                   
    if (result > 0)

                   
        return null;

                   
    break;

                    case
CompareValues.LessThan:

                   
    if (result <0)

                   
        return null;

                   
    break;

                    case
CompareValues.GreatThanOrEqualTo:

                   
    if (result >= 0)

                   
        return null;

                   
    break;

                    case
CompareValues.LessThanOrEqualTo:

                   
    if (result <= 0)

                   
        return null;

                   
    break;

                }

            }

 

            // got this far must mean the
items don‘t meet the comparison criteria

            return new
ValidationResult(ErrorMessage);

        }

    }

 

    ///

    /// Indicates a comparison criteria used by the CompareValues
attribute

    ///

    public enum CompareValues

    {

        EqualTo,

        NotEqualTo,

        GreaterThan,

        LessThan,

        GreatThanOrEqualTo,

        LessThanOrEqualTo

    }


 

 

应用的时候直接在指定的属性上添加此CompareValuesAttribute标签即可

 

【注:第一个参数是要与之比较的属性名,第二个参数表示两个属性值之间的大小关系,第三个参数表示错误提示信息】

 


public class EricSunModel

{

    [Display(Name = "Ready Time")]

    public string ReadyTime { get; set; }

 

    [CompareValues("ReadyTime", CompareValues.GreaterThan,
ErrorMessage = "Close time must be later than ready time")]

    [Display(Name = "Close Time")]

    public string CloseTime { get; set; }

MVC日期比较(转),布布扣,bubuko.com


推荐阅读
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 本文介绍了如何通过安装 sqlacodegen 和 pymysql 来根据现有的 MySQL 数据库自动生成 ORM 的模型文件(model.py)。此方法适用于需要快速搭建项目模型层的情况。 ... [详细]
  • 本文探讨了程序员这一职业的本质,认为他们是专注于问题解决的专业人士。文章深入分析了他们的日常工作状态、个人品质以及面对挑战时的态度,强调了编程不仅是一项技术活动,更是个人成长和精神修炼的过程。 ... [详细]
  • 本文介绍了SIP(Session Initiation Protocol,会话发起协议)的基本概念、功能、消息格式及其实现机制。SIP是一种在IP网络上用于建立、管理和终止多媒体通信会话的应用层协议。 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • 数据类型--char一、char1.1char占用2个字节char取值范围:【0~65535】char采用unicode编码方式char类型的字面量用单引号括起来char可以存储一 ... [详细]
  • 本文详细介绍了iOS应用的生命周期,包括各个状态及其转换过程中的关键方法调用。 ... [详细]
  • 项目风险管理策略与实践
    本文探讨了项目风险管理的关键环节,包括风险管理规划、风险识别、风险分析(定性和定量)、风险应对策略规划及风险控制。旨在通过系统的方法提升项目成功率,减少不确定因素对项目的影响。 ... [详细]
  • 探索AI智能机器人自动盈利系统的构建
    用户可通过支付198元押金及30元设备维护费租赁AI智能机器人,推荐他人加入可获得相应佣金。随着推荐人数的增加,用户将逐步解锁更高版本,享受更多收益。 ... [详细]
  • 本文将从基础概念入手,详细探讨SpringMVC框架中DispatcherServlet如何通过HandlerMapping进行请求分发,以及其背后的源码实现细节。 ... [详细]
  • Windows操作系统提供了Encrypting File System (EFS)作为内置的数据加密工具,特别适用于对NTFS分区上的文件和文件夹进行加密处理。本文将详细介绍如何使用EFS加密文件夹,以及加密过程中的注意事项。 ... [详细]
  • 回顾两年前春节期间的一个个人项目,该项目原本计划参加竞赛,但最终作为练习项目完成。独自完成了从编码到UI设计的全部工作,尽管代码量不大,但仍有一定的参考价值。本文将详细介绍该项目的背景、功能及技术实现。 ... [详细]
  • 如何在PHP中安装Xdebug扩展
    本文介绍了如何从PECL下载并编译安装Xdebug扩展,以及如何配置PHP和PHPStorm以启用调试功能。 ... [详细]
  • 本文探讨了在一个物理隔离的环境中构建数据交换平台所面临的挑战,包括但不限于数据加密、传输监控及确保文件交换的安全性和可靠性。同时,作者结合自身项目经验,分享了项目规划、实施过程中的关键决策及其背后的思考。 ... [详细]
  • importjava.io.*;importjava.util.*;publicclass五子棋游戏{staticintm1;staticintn1;staticfinalintS ... [详细]
author-avatar
和雅竹
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有