Based on great info out here...I've got my edit and create VM working great. My VM contains "SelectList" collections and the DD look like this.
@Html.DropDownListFor(model => model.softwaremanufacturerid, Model.ListOfManufacturers)
My question has to do with the Details action. Is there a way I can use the list I've already built (the lists are in an ancestor VM class that all the concrete ones inherit) to display the Manufacturers name instead of the FK? What I get now is just the FK.
Thanks