20
MVCかみそりコードを介してEnumメンバーの表示名属性を取得する方法
モデルに「Promotion」というプロパティがあります。そのタイプは「UserPromotion」というフラグ列挙型です。私の列挙型のメンバーには、次のように設定された表示属性があります。 [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 } …