如何在MVC中本地化数据注释?

时间:2013-12-20 07:53:46

标签: c# .net asp.net-mvc asp.net-mvc-5

我在模型中使用MVC 5我需要使用以下代码本地化DataAnnotation

[Required]
[Display(Name = Resources.Account_Login_UserName)]
public string UserName { get; set; }

我收到此错误:

  

属性参数必须是常量表达式,typeof表达式   或属性参数类型

的数组创建表达式

知道怎么解决吗?

1 个答案:

答案 0 :(得分:3)

[Display(Name = "Account_Login_UserName", ResourceType = typeof(Resources))]