3
名稱屬性正常工作,但ShortName不起作用。顯示屬性中的短名稱(DataAnnotations)
[Display(Name = "Date of the transfer the task", ShortName = "Trans date")]
public DateTime TransferDate { get; set; }
即使當我刪除Name屬性時,ShortName被忽略(「TransferDate」顯示在列標題中)。
在視圖我這樣做:
@Html.DisplayNameFor(model => model.TransferDate)
檢查看到這個答案了這個答案:[我如何使用ShortName屬性...](http://stackoverflow.com/questions/14255463/how-can-i-use-the-shortname-property-of-the-display-屬性爲我的表heade) – scheien
@scheien這是否意味着它不可能沒有寫我自己的幫手?我認爲它應該是自動的.. – silentfobos
我想這樣根據該職位。您還在您的view =>'@ Html.DisplayNameFor(...)'中引用了'DisplayName'屬性。我不知道任何退縮到ShortName老實說:-) – scheien