我正在寻找一种方法来省略我的MVC项目中Name
数据注释的Display
属性,但仍然使用资源类型。
我想通过这样做实现的目标是,在我的资源文件中,我获得了所有属性的名称和我想要的价值,我希望它能够"看到"当前属性名称并在资源文件中查找它。
示例代码:
public class SomeClass
{
// this is the normal way that works
[Display(Name = "Name", ResourceType = typeof(Titles))]
public string Name { get; set; }
// this is what i want to do
//but it's not working (yet no compile issues)
[Display(ResourceType = typeof(Titles))]
public string Info { get; set; }
}