Default resource for data annotations in ASP.NET MVC

后端 未结 3 575
一生所求
一生所求 2020-12-24 13:40

There\'s a way to set the default resource to the data annotations validations?

I don\'t wanna make something like this:

[Required(ErrorMessage=\"Nam         


        
3条回答
  •  没有蜡笔的小新
    2020-12-24 14:36

    I did another approach. It still needs you to inherit DataAnnotation attributes, but you can get a more flexible translation solution.

    Code from my blog post (read it fore more details)

    End result

    public class User
    {
        [Required]
        [LocalizedDisplayNameAttribute("User_Id")]
        public int Id { get; set; }
    
        [Required]
        [StringLength(40)]
        [LocalizedDisplayNameAttribute("User_FirstName")]
        public string FirstName { get; set; }
    
        [Required]
        [StringLength(40)]
        [LocalizedDisplayNameAttribute("User_LastName")]
        public string LastName { get; set; }
    }
    

    1 Inherit all data annotation attributes like this

    public class RequiredAttribute : System.ComponentModel.DataAnnotations.RequiredAttribute
    {
        private string _displayName;
    
        public RequiredAttribute()
        {
            ErrorMessageResourceName = "Validation_Required";
        }
    
        protected override ValidationResult IsValid(object value, ValidationContext validationContext)
        {
            _displayName = validationContext.DisplayName;
            return base.IsValid(value, validationContext);
        }
    
        public override string FormatErrorMessage(string name)
        {
            var msg = LanguageService.Instance.Translate(ErrorMessageResourceName);
            return string.Format(msg, _displayName);
        }
    }
    

    2 Inherit DisplayNameAttribute

    public class LocalizedDisplayNameAttribute : DisplayNameAttribute
    {
        private PropertyInfo _nameProperty;
        private Type _resourceType;
    
        public LocalizedDisplayNameAttribute(string className, string propertyName)
            : base(className + (propertyName == null ? "_Class" : ("_" + propertyName)))
        {
    
        }
    
        public override string DisplayName
        {
            get
            {
                return LanguageService.Instance.Translate(base.DisplayName) ?? "**" + base.DisplayName + "**";
            }
        }
    }
    

    3. Create the language service (you can switch to any language source in it)

    public class LanguageService
    {
        private static LanguageService _instance = new LanguageService();
        private List _resourceManagers = new List();
    
        private LanguageService()
        {
        }
    
        public static LanguageService Instance { get { return _instance; } }
    
        public void Add(ResourceManager mgr)
        {
            _resourceManagers.Add(mgr);
        }
    
        public string Translate(string key)
        {
            foreach (var item in _resourceManagers)
            {
                var value = item.GetString(key);
                if (value != null)
                    return value;
            }
    
            return null;
        }
    }
    

    Finally you need to register the string tables you use to translate the validation messages and your models

    LanguageService.Instance.Add(MyNameSpace.ModelResource.ResourceManager);
    LanguageService.Instance.Add(MyNameSpace.ValidationResources.ResourceManager);
    

提交回复
热议问题