Sapete con quale facilità posso associare il contenuto di un array di stringhe a DropDownList in vista per Rasoio MVC?Associazione di un array di stringhe a DropDownList in MVC Razor
public static string[] AgeRagne = new string[] { "Sun", "Mon", "Tues", "Wed" };
UPDATE: Sotto codice ha funzionato.
@Html.DropDownListFor(
model => model.Filter.AgeRange,
new SelectList(Extensions.AgeRange, Model.Filter.AgeRange),
new { @class = "search-dropdown", name = "ageRange" }
)
sto solo prendendo una ipotesi davvero selvaggia .. ma intendevi 'AgeRange' not' AgeRagne'? => => '.. stringa [] AgeRagne = ...' –