Question:
This is my enum and and I am using it in drop-down in MVC5 while creating the project and displaying this status on project details page.But these display name are working properly in drop-down list but in details page it is showing the original value e.g In_Progress.How to work with display name?
Code:
public enum status
{
[Display(Name="In Progress")]
In_Progrss,
[Display(Name="Completed")]
Completed
}