Ho una proprietà nel mio modello chiamata "Promozione" che il suo tipo è un enum di bandiera chiamato "UserPromotion". I membri del mio enum hanno gli attributi di visualizzazione impostati come segue:
[Flags]
public enum UserPromotion
{
None = 0x0,
[Display(Name = "Send Job Offers By Mail")]
SendJobOffersByMail = 0x1,
[Display(Name = "Send Job Offers By Sms")]
SendJobOffersBySms = 0x2,
[Display(Name = "Send Other Stuff By Sms")]
SendPromotionalBySms = 0x4,
[Display(Name = "Send Other Stuff By Mail")]
SendPromotionalByMail = 0x8
}
Ora voglio essere in grado di creare un ul nella mia vista per mostrare i valori selezionati della mia proprietà "Promozione". Questo è quello che ho fatto finora, ma il problema è che come posso ottenere i nomi visualizzati qui?
<ul>
@foreach (int aPromotion in @Enum.GetValues(typeof(UserPromotion)))
{
var currentPromotion = (int)Model.JobSeeker.Promotion;
if ((currentPromotion & aPromotion) == aPromotion)
{
<li>Here I don't know how to get the display attribute of "currentPromotion".</li>
}
}
</ul>
System.ComponentModel.DataAnnotations.DisplayAttribute
. Non System.ComponentModel.DisplayNameAttribute
.