我找到了在[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文件。
有人知道吗?