热门标签 | 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


推荐阅读
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • 本文介绍如何通过Windows批处理脚本定期检查并重启Java应用程序,确保其持续稳定运行。脚本每30分钟检查一次,并在需要时重启Java程序。同时,它会将任务结果发送到Redis。 ... [详细]
  • MySQL中枚举类型的所有可能值获取方法
    本文介绍了一种在MySQL数据库中查询枚举(ENUM)类型字段所有可能取值的方法,帮助开发者更好地理解和利用这一数据类型。 ... [详细]
  • 在使用 DataGridView 时,如果在当前单元格中输入内容但光标未移开,点击保存按钮后,输入的内容可能无法保存。只有当光标离开单元格后,才能成功保存数据。本文将探讨如何通过调用 DataGridView 的内置方法解决此问题。 ... [详细]
  • 本文介绍如何通过SQL查询从JDE(JD Edwards)系统中提取所有字典数据,涵盖关键表的关联和字段选择。具体包括F0004和F0005系列表的数据提取方法。 ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
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社区 版权所有