@Html.DropDownListFor(model => model.Members[index].Contact.RelationId.Value, new SelectList(Model.Relations, "RelationId", "Description"), new { @class = "form-control" })
So my list is being created , and model.Members[index].Contact.RelationId.Value = 2
but won't select 2nd id of the DDL only 1st.
I've tried this several different ways and stack overflow solutions. not sure what i could be doing wrong
@Html.DropDownListFor(model => model.Members[index].Contact.RelationId.Value, new SelectList(Model.Relations, "RelationId", "Description"), Model.Members[index].Contact.RelationId.Value)
without effect