I created a model with EF and then created a controller and view in MVC.
The model type A has a Navigation Property to type B. So when I create A I want to select a B.
The MVC wizard to create the controller and view only created fields for Scalar Properties. So I went and changed my create action on A to:
public ActionResult Create() //Create action for A
{
List<B> b = db.B.ToList(); //db is my DataContext
ViewData["B"] = companies.Select(option => new SelectListItem
{
Text = (option.Name.ToString()),
Value = (option.Id.ToString())
});
return View();
}
And added to my view:
<div class="editor-label">
@Html.LabelFor(model => model.B)
</div>
<div class="editor-field">
@Html.DropDownListFor(model => model.B, (IEnumerable<SelectListItem>)ViewData["B"], "---- Select B ----")
@Html.ValidationMessageFor(model => model.B)
</div>
All is good so far and I get the HTML
<select class="valid" id="B" name="B">
<option value="">---- Select B ----</option>
<option selected="selected" value="1">TestB</option>
</select>
However when I submit I get the error:
The value '1' is invalid.
Having not written any validation it must have been auto-generated somewhere. How do I correct it to check the values against the ViewData["B"] collection ID's?