简体   繁体   中英

Asp.net MVC model validating

I`m new On Asp.net Mvc (4)

can I call a function to validate a model property ( It is more than REQUIRED , MAXLENGHT...)

eg:

public class Movie 

{

   public int ID { get; set; }

   [Required]
   public string Title { get; set; }

   [DataType(DataType.Date)]
   public DateTime ReleaseDate { get; set; }

   [Required]
   public string Genre { get; set; }

   [Range(1, 100)]
   [DataType(DataType.Currency)]
   public decimal Price { get; set; }

   [StringLength(5)]
   public string Rating { get; set; }
   [***Call some function here***]

   public string blabla{get;set;}
}

Or maybe another idea?

This can be done by imlementing a custom validation attribute check this link and this

Example:

public sealed class DateEndAttribute : ValidationAttribute
{
    public string DateStart { get; set; }

    public override bool IsValid(object value)
    {
        // Get value of datestart property
        string dateStartString = HttpContext.Current.Request[DateStart];
        DateTime dateEnd = (DateTime)value;
        DateTime dateStart = DateTime.Parse(dateStartString);

        // Start must be before end
        return dateStart <= dateEnd;
    }

    public override string FormatErrorMessage(string name)
    {
        return name + " has to be after startdate";
    }
}

Usage:

    [Required]
    [Display(Name = "StartDate")]
    public DateTime StartDate { get; set; }

    [Display(Name = "EndDate")]
    [DateEnd(DateStart = "StartDate")]
    public DateTime EndDate { get; set; }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM