CSLA:列表项必须标记为子对象

时间:2016-06-29 17:36:58

标签: .net asp.net-mvc model-view-controller csla

我有两个表Survey和SurveyQuestion。我正在尝试将多个问题保存到一个调查中。我正在使用

@(Html.BeginCollectionItem("SurveyQuestions")){ }. 

当我点击“保存”时,它会显示“列表项必须标记为子对象”。知道我需要做什么吗?

在调用PartialView时,我将其标记为孩子,但仍无效。

return PartialView("_questionForm", SurveyQuestion.New(true));

public static SurveyQuestion New(Boolean isChild = false)
    {
        SurveyQuestion d = DataPortal.Create<SurveyQuestion>();
        if (isChild)
            d.MarkAsChild();
        return d;
    }

1 个答案:

答案 0 :(得分:0)

未在Global.asax中设置ModelBinders.Binders.DefaultBinder