开发者

How to use DataAnnotations ErrorMessageResourceName with custom Resource Solution

开发者 https://www.devze.com 2022-12-21 16:12 出处:网络
I\'m building a MVC web application with C#. Since the site will be multilingual, I\'ve implemented my own ResourceManager. Th开发者_如何学JAVAis class is responsible for fetching the required resourc

I'm building a MVC web application with C#. Since the site will be multilingual, I've implemented my own ResourceManager. Th开发者_如何学JAVAis class is responsible for fetching the required resource strings from a database/cache depending on the currents thread culture and works fine so far.

My problem is, I'd like to use the my custom ResourceManager solution to fetch validation error messages when for example using the Required Attribute on a property. Can this be done?


The RequiredAttribute allows to use a custom resource manager:

[Required(
    ErrorMessageResourceType = typeof(CustomResourceManager), 
    ErrorMessageResourceName = "ResourceKey")]
public string Username { get; set; }

UPDATE:

Another possibility is to write your custom attribute:

public class CustomRequiredAttribute : RequiredAttribute
{
    public override string FormatErrorMessage(string name)
    {
        return YourCustomResourceManager.GetResource(name);
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消