MVC Razor のビューで、文字列配列の内容を DropDownList にバインドするのがいかに簡単か知っていますか?
public static string[] AgeRagne = new string[] { "Sun", "Mon", "Tues", "Wed" };
更新: 以下のコードが機能しました。
@Html.DropDownListFor(
model => model.Filter.AgeRange,
new SelectList(Extensions.AgeRange, Model.Filter.AgeRange),
new { @class = "search-dropdown", name = "ageRange" }
)