从资源(resx)值/注释设置DisplayAttribute.Description值

时间:2015-08-06 21:37:14

标签: c# asp.net-mvc-5 data-annotations resx

我找到了在[How do I display the DisplayAttribute.Description attribute value?中公开DisplayAttribute.Description的方法,但找不到从资源文件(resx)设置此属性的方法。

替换:

[Display(Name = "Phone", Description="Hello World!")]
public string Phone1 { get; set; }

人:

[Display(Name = "Phone", ResourceType = typeof(Resources.Resources))]
public string Phone1 { get; set; }

Hello World!消息移至资源resx文件。

有人知道吗?

0 个答案:

没有答案