我使用带有@Html.HiddenFor()
的剃刀mvc视图,但在回发后,模型的自定义属性值始终返回null
。
财产:public Survey Survey { get; set; }
这是我的隐藏字段:
@html.HiddenFor(x => x.Survey);
这是我的模特:
public class Response
{
[Key]
public int Id { get; set; }
public int SurveyId { get; set; }
public Survey Survey { get; set; }
public string CreatedBy { get; set; }
....
}
谢谢,豪尔赫