I have two view models:
public class ParentViewModel { public Id { get; set; } ..... public ChildViewModel Child{ get; set; }
The answer is that needs to pass an empty object to Partial, like
@Html.Partial("_Partial", new ChildViewModel ())