You could use automatic model binding here.
With a form like this:
<%using(Html.BeginForm("Update", "Home")) {%>
<%=Html.TextBox("widget.Title") %>
<%=Html.TextBox("childWidget.Content") %>
<input type="submit" value="Submit" />
<%} %>
Your controller can then look like this:
public ActionResult Update(Widget widget, WidgetChild childWidget)
{
// do whatever with the objects here
}
The objects will have the properties from the for form populated there (Title for widget, and Content for childWidget) - then you can associate these objects with each other and save them to your linq to sql data context in the normal way.
