I\'m asking because the partial view I will create is blank, with the purpose of creating a new child entity. I just need a quick, regardless if dirty, way to access the Pa
You can just pass the model IE:
The encapsulating view:
@model MyModel @Html.Partial("_myPartial", Model)
Partial View:
@model MyModel Id = @Model.Id;