i have an enum class
public enum Language {
English = 0,
Malayalam=1
}
i want to put the string in dropdown list and store the value in database when inserted. And i also declare it in property list as
public Language Language { get; set; }
how can i access these in dropdown list(MVC4)