vote up 2 vote down star
2

Is it possible to bind a foreign key relationship on my model to a form input?

Say I have a one-to-many relationship between Car and Manufacturer. I want to have a form for updating Car that includes a select input for setting Manufacturer. I was hoping to be able to do this using the built-in model binding, but I'm starting to think I'll have to do it myself.

My action method signature looks like this:

public JsonResult Save(int id, [Bind(Include="Name, Description, Manufacturer")]Car car)

The form posts the values Name, Description and Manufacturer, where Manufacturer is a primary key of type int. Name and Description get set properly, but not Manufacturer, which makes sense since the model binder has no idea what the PK field is. Does that mean I would have to write a custom IModelBinder that it aware of this? I'm not sure how that would work since my data access repositories are loaded through an IoC container on each Controller constructor.

flag

59% accept rate

1 Answer

vote up 2 vote down

Surely each car only has one manufacturer. If that's the case then you ought to have an ManufacturerID field that you can bind the value of the select to. That is, your select should have the Manufacturer name as it's text and the id as the value. In your save value, bind ManufacturerID rather than Manufacturer.

<%= Html.DropDownList( "ManufacturerID",
        (IEnumerable<SelectListItem>)ViewData["Manufacturers"] ) %>

With

ViewData["Manufacturers"] = db.Manufacturers
                              .Select( m => new SelectListItem
                                            {
                                               Text = m.Name,
                                               Value = m.ManufacturerID
                                            } )
                               .ToList();

And

public JsonResult Save(int id,
                       [Bind(Include="Name, Description, ManufacturerID")]Car car)
link|flag
If the model is built using POCOs, having a ManufacturerID property on the Car doesn't seem right to me. Is this really the preferred way of solving this kind of model binding? – Jørn Schou-Rode Aug 8 at 9:59
I'm not sure what you mean. Normally, I'd have a foreign key field to relate the car and manufacturer entities. It's pretty standard to have this be an "ID" field. I suppose that you might not choose to expose this field in your model, but you certainly could. I typically use LINQtoSQL and I can assure you that there would be both a ManufacturerID property and an associated Manufacturer entity on the Car entity. – tvanfosson Aug 8 at 12:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.