The way I do it, is to create strongly typed Display/Editor templates for "Address".
Then call @Html.EditorFor(x=>x.BusinessAddress) or @Html.DisplayFor(x=>x.BusinessAddress)
You can also create different templates for different uses, and then optionally supply the name of the template in the Editor/DisplayFor methods.
BTW, the templates I mention may reside in the ~Views/Shared/EditorTemplates or ~Views/Shared/DisplayTemplates folders, respectively. Or they may reside with in a specific Controllers views folder, under EditorTemplates or DisplayTemplates.
Edit: Here is a link that demonstrates this.
Editor Tempates
Edit 2: Here is an example to try and explain further, per your comment.
Address Model
public partial class Address
{
public int AddressId { get; set; }
public string Street1 { get; set; }
public string Street2 { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Zip { get; set; }
}
Editor Template: This file is named "Address.cshtml" and located in my "~Views/Shared/EditorTemplates" folder.
@model Address
@Html.HiddenFor(model => model.AddressId)
<div class="editor-label">
@Html.LabelFor(model => model.Street1)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Street1)
@Html.ValidationMessageFor(model => model.Street1)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Street2)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Street2)
@Html.ValidationMessageFor(model => model.Street2)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.City)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.City)
@Html.ValidationMessageFor(model => model.City)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.State)
</div>
<div class="editor-field">
@* Populated from Helper *@
@Html.DropDownListFor(m => m.State, new SelectList(statesDictionary, "Key", "Value"), string.Empty)
@Html.ValidationMessageFor(model => model.State)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Zip)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Zip)
@Html.ValidationMessageFor(model => model.Zip)
</div>
Create View: This is my view that will implement the editor template for my model. Note the line @Html.EditorForModel();
@model Address
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>Address</legend>
@Html.EditorForModel()
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
Now if my model for my view was something else, that linked to an "Address", I would have used @Html.EditorFor(model => model.BusinessAddress)
As for the names, that's completely under your control. By default, they get mapped to you property names, but you can change any by supplying an object containing your html attribues in the EditorFor overloads.