I inherited a half-finished undocumented project recently and am struggling to comprehend all of the seemingly normal code, such as this use of @Html.Partial.
@Html.Partial("_myPartial", new myModel { Text = "myParam" })
There is no _myPartial.cshtml anywhere to be found in the code and I believe it was simply omitted but before I loose any more hair I'd like to get confirmation. I don't believe this code is capable of creating the partial view on its own. Pass a model to an existing partial - sure. Create one out of thin air - maybe not so much.
Is there any possibility that this code could produce the partial view in its entirety?