Actually, if you put something like this in the Edit / Create View with the model of your MyModel class:
<%= Html.TextBox("Meta.Prop1") %>
where Prop1 is a property of your MyOtherModel class, then
UpdateModel(model);
will populate the text box value for your custom submodel property. And vice versa, the value of the text field will also be filled with this submodel value.
So, as soon as you update the current model, you also update the submodels.
Victor Gelmutdinov
source share