我在模型中使用MVC 5我需要使用以下代码本地化DataAnnotation
[Required]
[Display(Name = Resources.Account_Login_UserName)]
public string UserName { get; set; }
我收到此错误:
属性参数必须是常量表达式,typeof表达式 或属性参数类型
的数组创建表达式
知道怎么解决吗?
答案 0 :(得分:3)
[Display(Name = "Account_Login_UserName", ResourceType = typeof(Resources))]