省略"名称"参数"显示"数据注释但使用" ResourceType"

时间:2015-07-31 08:28:26

标签: .net asp.net-mvc-4 data-annotations resourcedictionary

我正在寻找一种方法来省略我的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; } 
}

0 个答案:

没有答案