ViewModel处理多个数据模型

时间:2012-08-16 15:59:18

标签: c# asp.net-mvc-3 entity-framework

我在这里打击1000我的问题。所以我会尝试尽可能具有描述性。

我在布局中有多个来自不同模型的视图。  从列表中选择记录时,它将打开此布局。在布局的顶部,它以表格格式显示记录信息。这是一个简单的ID - / AuditSchedule / 1122。这是目前的身体。这很有效。

在布局的另一个区域,我有一个从另一个表生成的动作链接列表(侧面菜单)。链接,我认为应该如下但不确定/ AuditSchedule / 1122/1。这是通过将Global.asax与路径一起使用来实现的。

当你打开这个布局时,你应该得到以上所有内容以及布局下一个区域的第一条记录。在这种形式中,我需要它从问题表中显示一个问题,并在问题的右侧创建一组复选框,我将称之为分数。这些分数也在一个称为分数的表中。我所拥有的一切几乎都在数据表中,以便在需要时可以编辑和更改所有内容。

当用户提交表单时,它将在另一个名为MainAnswers的表中存储auditSchedule的id,mainQuestion和得分的字符串。此表是一个空白表,因此它将为该AuditSchedule的每个主要问题插入一条新记录。

到目前为止,我对此没有任何帮助。如果有人能指出我看到他们的一个例子。这会很棒。我不可能是唯一一个试图这样做的人。不过我是MVC C#的新手。如果这是Zend和PHP我就没有问题。

我已经使用了代码第一种方法。我所有的关系都已完成。问题在于实现视图并将信息保存在正确的表中。

任何可以提供帮助的人都会非常感激。我在这里挣扎。

2012年8月16日下午3:12更新

让我先采取婴儿步骤。

我希望能够从侧面选择菜单项,并从该部分中提供问题列表。这是我的代码:

@{ Layout = null; }
@model QQAForm.ViewModels.AuditFormEdit

<table width="698" border="2" cellpadding="2">
<tr>
<td align="center"><b>Section</b><br />1.0</td>
<td>

<br />(Title of Section Goes Here - SubcategoryName - Located in Subcategory Model)<br />


<br />

(Child Questions Go here - QuestionText - Located in ChildQuestion Model)

</td>
<td>
        (This should be the result of what is written in AuditFormEdit view model - it does not currently work - Nothing shows up)
        @for (int index = 0; index < Model.ScoreCardCheckBoxHelperList.Count; index++)
        {

            @Html.CheckBoxFor(m => m.ScoreCardCheckBoxHelperList[index].Checked)
            @Html.LabelFor(m => m.ScoreCardCheckBoxHelperList[index], Model.ScoreCardCheckBoxHelperList[index].ScoreName)
            @Html.HiddenFor(m => m.ScoreCardCheckBoxHelperList[index].ScoreID)
            @Html.HiddenFor(m => m.ScoreCardCheckBoxHelperList[index].ScoreName)


        }

   </td>
 </tr>
</table>

以下是我正在研究的View模型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using QQAForm.Models;

namespace QQAForm.ViewModels
{
public class AuditFormEdit
{
    public List<SubcategoryHelper> SubcategoryHelperGet { get; set; }

    public class SubcategoryHelper : Models.SubCategory
    {
        public SubcategoryHelper(Models.SubCategory subCat)
        {
            this.SubCategoryID = subCat.SubCategoryID;
            this.SubcategoryName = subCat.SubcategoryName;
        }

    }


    public Models.MainAnswer ScoreInstance { get; set; }

    public List<ScoreCardCheckBoxHelper> ScoreCardCheckBoxHelperList { get; set; }

    public void InitializeScoreCheckBoxHelperList(List<Models.Score> ScoreList)
    {
        if (this.ScoreCardCheckBoxHelperList == null)
            this.ScoreCardCheckBoxHelperList = new List<ScoreCardCheckBoxHelper>();

        if (ScoreList != null
            && this.ScoreInstance != null)
        {
            this.ScoreCardCheckBoxHelperList.Clear();
            ScoreCardCheckBoxHelper scoreCardCheckBoxHelper;
            string scoreTypes =
                string.IsNullOrEmpty(this.ScoreInstance.Score) ?
                string.Empty : this.ScoreInstance.Score;
            foreach (Models.Score scoreType in ScoreList)
            {
                scoreCardCheckBoxHelper = new ScoreCardCheckBoxHelper(scoreType);
                if (scoreTypes.Contains(scoreType.ScoreName))
                    scoreCardCheckBoxHelper.Checked = true;
                this.ScoreCardCheckBoxHelperList.Add(scoreCardCheckBoxHelper);
            }
        }
    }


    public void PopulateCheckBoxsToScores()
    {
        this.ScoreInstance.Score = string.Empty;
        var scoreType = this.ScoreCardCheckBoxHelperList.Where(x => x.Checked)
                              .Select<ScoreCardCheckBoxHelper, string>(x => x.ScoreName)
                              .AsEnumerable();
        this.ScoreInstance.Score = string.Join(", ", scoreType);
    }


    public class ScoreCardCheckBoxHelper : Models.Score
    {
        public bool Checked { get; set; }

        public ScoreCardCheckBoxHelper() : base() { }

        public ScoreCardCheckBoxHelper(Models.Score score)
        {
            this.ScoreID = score.ScoreID;
            this.ScoreName = score.ScoreName;
        }
    }



}
}

这是控制器部件:

    //get
    public ActionResult _Forms(int section)
    {
        AuditFormEdit viewModel = new AuditFormEdit();
        //viewModel.ScoreInstance = _db.MainAnswers.Single(r => r.MainAnswerID == id);
        _db.SubCategories.Single(r => r.SubCategoryID == section);
        viewModel.InitializeScoreCheckBoxHelperList(_db.Scores.ToList());
        return View(viewModel);
    }



    //post
    [HttpPost]
    public ActionResult _Forms(AuditFormEdit viewModel)
    {
        if (ModelState.IsValid)
        {
            viewModel.PopulateCheckBoxsToScores();
            _db.Entry(viewModel.ScoreInstance).State = System.Data.EntityState.Modified;
            _db.SaveChanges();
            return RedirectToAction("/");
        }
        else
        {
            return View(viewModel);
        }
    }

因此,如果您查看布局,它显示_Forms的位置,该部分应该使用链接/ AuditSchedule / 1132/1更改 - 它不会。以及我目前也没有显示的复选框。

1 个答案:

答案 0 :(得分:0)

  

...我的复选框目前也没有出现。

那是因为在控制器的GET操作中设置viewModel.ScoreInstance的行被注释掉了:

//viewModel.ScoreInstance = _db.MainAnswers.Single(r => r.MainAnswerID == id);

因此viewModel.ScoreInstancenullInitializeScoreCheckBoxHelperList只有当ScoreCardCheckBoxHelperList viewModel.ScoreInstance时才填充null }:

if (this.ScoreCardCheckBoxHelperList == null)
    this.ScoreCardCheckBoxHelperList = new List<ScoreCardCheckBoxHelper>();

if (ScoreList != null
    && this.ScoreInstance != null)
{
    //... add elements to ScoreCardCheckBoxHelperList
}

清空ScoreCardCheckBoxHelperList =没有复选框。