1

我正在使用 C# 和 SQL Server 2005 开发一个 ASP .Net MVC 3 应用程序。我也在使用实体框架和代码优先方法。我有一个视图“索引”,其中包含指向另一个视图“更新”的链接。调试时view的值为NULL的问题。

该视图由名称为 ProfileGa 的控制器填充。

这是控制器 ProfileGa 代码的一部分:

public ActionResult Update(string id)
{
    FlowViewModel flv = db.FlowViewModels.Find(id);
    return View(flv);
}

[HttpPost]
public ActionResult Update(FlowViewModel model)
{
    Console.WriteLine("" + model.Nbr_Passage);

        Gamme G = new Gamme();
        ListG.Remove(G);
        db.Gammes.Remove(G); 
        G.ID_Gamme = model.SelectedProfile_Ga;
        G.ID_Poste = model.SelectedPoste;
        G.Last_Posts = model.PostePrecedentSelected;
        G.Next_Posts = model.PosteSuivantSelected;
        G.Nbr_Passage = int.Parse(model.Nbr_Passage);
        G.Position = int.Parse(model.Position);
        ListG.Add(G);
        db.Gammes.Add(G);
        db.SaveChanges();

    return RedirectToAction("Index");
} 

当我在行上放一个断点时:

FlowViewModel flv = db.FlowViewModels.Find(id);

flv 的值为 NULL。可能数据库中没有指定id的记录。

我无法深入研究方法查找,因为该方法的代码是预定义的(我没有编写)。它是 DbSet 的一种方法。

相同的代码正在与其他视图一起使用,但仅此而已。

我认为问题取决于 ID (ID_Gamme),它是一个 DropDownList,不像其他的 (TextBox)。

这是视图索引的一部分代码,其中包含视图更新的链接:

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.master" Inherits="System.Web.Mvc.ViewPage<MvcApplication2.Models.FlowViewModel>" %>
<%@ Import Namespace="Helpers" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Index
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<table>

<% foreach (var item in Model.GaItems) { %>
    <tr>
         <td>
            <%: Html.DisplayFor(modelItem => item.ID_Gamme) %>
        </td>
        <td>
            <%: Html.DisplayFor(modelItem => item.ID_Poste) %>
        </td>
        <td>
            <%: Html.DisplayFor(modelItem => item.Nbr_Passage) %>
        </td>
        <td>
            <%: Html.DisplayFor(modelItem => item.Position) %>
        </td>
        <td>
            <%: Html.DisplayFor(modelItem => item.Last_Posts) %>
        </td>
         <td>
            <%: Html.DisplayFor(modelItem => item.Next_Posts) %>
        </td>
        <td>    
            <%: Html.ActionLink("Modifier", "Update", new { id=item.ID_Gamme }) %>     
        </td>
    </tr>
<% } %>

</table>

</asp:Content>

这是模型 FlowViewModel 的代码:

public class FlowViewModel
{    
    [Key]
    public string IDv { get; set; }
    [NotMapped]
    public SelectList PostesItems { get; set; }
    public List<Profile_Ga> Profile_GaItems { get; set; }
    public List<Gamme> GaItems { get; set; }
    public string SelectedProfile_Ga { get; set; }
    public string SelectedPoste { get; set; }  
    public string PostePrecedentSelected { get; set; } 
    public string PosteSuivantSelected { get; set; }    
    public string Position { get; set; }
    public string  Nbr_Passage { get; set; }    
    public List<Gamme> ListG = new List<Gamme>();    
}

Gestion.ascx 的一部分:

<% using (Html.BeginForm("Save", "Anouar")) { %>
    <%: Html.ValidationSummary(true) %>
    <fieldset class="parametrage">
        <legend>Gestion de Gamme</legend>
        <div><%:Html.Label("Poste :")%><%: Html.DropDownListFor(model => model.SelectedPoste, Model.PostesItems)%></div>

        <div><%:Html.Label("Nombre de Passage :")%><%: Html.EditorFor(model=>model.Nbr_Passage)%></div><div class="editor-field"> <%: Html.ValidationMessageFor(model => model.Nbr_Passage)%></div>
        <div><%:Html.Label("Position :")%><%: Html.EditorFor(model=>model.Position)%></div>
        <div><%:Html.Label("Poste Précédent :")%><%: Html.DropDownListFor(model => model.PostePrecedentSelected, Model.PostesItems)%></div>
        <div><%:Html.Label("Poste Suivant :")%><%: Html.DropDownListFor(model => model.PosteSuivantSelected, Model.PostesItems)%></div>

        <div><input type="submit" value="Enregistrer" id="btnSave"  /></div>
    </fieldset>
...
4

1 回答 1

6

问题是因为FlowViewModel不是数据库中的实体,而是ViewModel。因此,当您尝试查询数据库时,FlowViewModel.Find...它不会返回任何内容,因为它没有映射到数据库表。

您可能希望从其他表中获取各种信息,例如Gamme(您正在写回的)。您应该从其他数据库实体中填充FlowViewModel,然后传递到视图中。

因此,您想要填充数据库实体并执行以下操作Profile_GaItemsGammes

public ActionResult Update(string id)
{
    FlowViewModel flv = new FlowViewModel();
    flv.Profile_GaItems = db.Profile_GaItems.ToList();
    flv.GaItems  = db.Gammes.ToList();
    return View(flv);
}
于 2013-05-20T14:34:41.440 回答