How to manually validate a model with attributes?

前端 未结 4 1345
既然无缘
既然无缘 2020-12-02 14:01

I have a class called User and a property Name

public class User
{
    [Required]
    public string Name { get; set; }
}

相关标签:
4条回答
  • 2020-12-02 14:37

    I wrote a wrapper to make this a bit less clunky to work with.

    Usage:

    var response = SimpleValidator.Validate(model);
    
    var isValid = response.IsValid;
    var messages = response.Results; 
    
    

    Or if you only care about checking validity, it's even tighter:

    var isValid = SimpleValidator.IsModelValid(model);
    
    

    Complete source:

    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    
    namespace Ether.Validation
    {
        public static class SimpleValidator
        {
            /// <summary>
            /// Validate the model and return a response, which includes any validation messages and an IsValid bit.
            /// </summary>
            public static ValidationResponse Validate(object model)
            {
                var results = new List<ValidationResult>();
                var context = new ValidationContext(model);
    
                var isValid = Validator.TryValidateObject(model, context, results, true);
             
                return new ValidationResponse()
                {
                    IsValid = isValid,
                    Results = results
                };
            }
    
            /// <summary>
            /// Validate the model and return a bit indicating whether the model is valid or not.
            /// </summary>
            public static bool IsModelValid(object model)
            {
                var response = Validate(model);
    
                return response.IsValid;
            }
        }
    
        public class ValidationResponse
        {
            public List<ValidationResult> Results { get; set; }
            public bool IsValid { get; set; }
    
            public ValidationResponse()
            {
                Results = new List<ValidationResult>();
                IsValid = false;
            }
        }
    }
    

    Or at this gist: https://gist.github.com/kinetiq/faed1e3b2da4cca922896d1f7cdcc79b

    0 讨论(0)
  • 2020-12-02 14:44

    I made an entry in the Stack Overflow Documentation explaining how to do this:

    Validation Context

    Any validation needs a context to give some information about what is being validated. This can include various information such as the object to be validated, some properties, the name to display in the error message, etc.

    ValidationContext vc = new ValidationContext(objectToValidate); // The simplest form of validation context. It contains only a reference to the object being validated.
    

    Once the context is created, there are multiple ways of doing validation.

    Validate an Object and All of its Properties

    ICollection<ValidationResult> results = new List<ValidationResult>(); // Will contain the results of the validation
    bool isValid = Validator.TryValidateObject(objectToValidate, vc, results, true); // Validates the object and its properties using the previously created context.
    // The variable isValid will be true if everything is valid
    // The results variable contains the results of the validation
    

    Validate a Property of an Object

    ICollection<ValidationResult> results = new List<ValidationResult>(); // Will contain the results of the validation
    bool isValid = Validator.TryValidatePropery(objectToValidate.PropertyToValidate, vc, results, true); // Validates the property using the previously created context.
    // The variable isValid will be true if everything is valid
    // The results variable contains the results of the validation
    

    And More

    To learn more about manual validation see:

    • ValidationContext Class Documentation
    • Validator Class Documentation
    0 讨论(0)
  • 2020-12-02 14:47

    You can use Validator to accomplish this.

    var context = new ValidationContext(u, serviceProvider: null, items: null);
    var validationResults = new List<ValidationResult>();
    
    bool isValid = Validator.TryValidateObject(u, context, validationResults, true);
    
    0 讨论(0)
  • 2020-12-02 14:59

    Since the question is asking specifically about ASP.NET MVC, you can use the TryValidateObject inside your Controller action.

    Your desired method overload is TryValidateModel(Object)

    Validates the specified model instance.

    Returns true if the model validation is successful; otherwise false.

    Your modified source code

    [HttpPost]
    public ActionResult NewUser(UserViewModel userVM)
    {
        User u = new User();
        u.Name = null;
    
        if (this.TryValidateObject(u))
        {
            TempData["NewUserCreated"] = "New user created sucessfully";
            return RedirectToAction("Index");
        }
    
        return View();
    }
    
    0 讨论(0)
提交回复
热议问题