I have a view model with a custom object. On the initial get, I populate Foo and use a couple of Foo's properties.
On the post, I find that Foo on the view model is null.
I could add to my view, @Html.HiddenFor(x => x.Foo.Id) which could ensure that a Foo is populated with at least an Id, but then I could need to add similar code for all of the properties.
Is there a way to send back the complete object?
public class RequestModel
{
public Foo Foo{ get; set; }
[Required]
[Display(Name = "Comment")]
public string Comment { get; set; }
}
Controller
public ActionResult Index(int? id)
{
//Populate Foo here using EF and add it to the model
var model = new RequestModel { Foo = foo };
return View(model);
}
[HttpPost]
public ActionResult Index(int? id, RequestModel model)
{
return View(model);
}
View
@Html.DisplayTextFor(m=>m.Application.Name)
etc
Fooproperties back to the action? – Jan Nov 22 '12 at 8:42