I need the following to be turned into a @html helper for a drop down list.
<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>
Since I'm doing this a little unnorthodox with the .First() and the 2 pieces of data being put into the list I'm not really sure how to make a @Html.SelectListFor for this.
@Html.DropDownListFor(model => model.CustomerID, new SelectList(Model.Customers, "CustomerID", "What do I put here"))
you should try this
In View
or you can use another