この値「American|African|Asian」を含むフィールドがテーブルにあります。フィールドから値を取得し、テキストを分割してドロップダウンリストにバインドしたいと考えています。MVC3を使用しています。
これまでのところ、私はこれを持っています:
public static SelectList SplitText(this HtmlHelper html, string texttosplit, string seperator)
{
return new SelectList(texttosplit.Split('|'));
}
しかし、ドロップダウンリストにバインドする方法がわかりません
@Html.DropDownListFor(model => model.EM_opt1Values, @Html.SplitText(this will have an error it will not accept model => model.EM_opt1Values) )