ドロップダウン リストの @html ヘルパーに変換するには、次のものが必要です。
<select size="30" class="scrollableinside" id="CustomerSelect">
@foreach (var customer in Model.Customers)
{
<option value=@customer.CustomerContacts.First().CustomerContactID>@customer.CustomerName 	 	 @customer.CustomerContacts.First().Phone</option>
}
</select>
私は .First() と 2 つのデータをリストに入れることでこれを少し非正統的にやっているので、これのために @Html.SelectListFor を作成する方法がよくわかりません。
@Html.DropDownListFor(model => model.CustomerID, new SelectList(Model.Customers, "CustomerID", "What do I put here"))