4

尝试通过实体框架更新数据时,我正在努力使用 ASP.NET MVC3。过程如下:

我有这个模型:

    public class Bet
    {
       public string BetID { get; set; }
       public int FixtureID { get; set; }
       public string Better { get; set; }
       public int GoalsHome { get; set; }
       public int GoalsGuest { get; set; }

       public virtual Fixture { get; set; }

    }

在控制器中,我通过 where 语句过滤表以仅获取与用户匹配的条目:

    [HttpGet]
    public ActionResult Index()
    {
        var user = User.Identity.Name;
        var model = _db.Bets.Where(t => t.Better == user);

        return View(model);
    }

视图由两部分组成,一个负责处理表格标题,另一个列出用户的所有投注:

<fieldset>
    <legend>Bets</legend>
    <table>
        <tr>
            <th>
                Kickoff
            </th>
            <th>
                Home Team
            </th>
            <th>
                Guest Team
            </th>
            <th>
                Group
            </th>
            <th>
                Bet
            </th>
        </tr>
        @Html.EditorFor(m => m)  //this is resolved in an self made EditorTemplate
  </table>

编辑器模板:

@model Betting.Models.Bet
<tr>
<td>
    @Html.DisplayFor(modelItem => Model.Fixture.Kickoff)
</td>
<td>
    @Html.DisplayFor(modelItem => Model.Fixture.HomeTeam)
</td>
<td>
    @Html.DisplayFor(modelItem => Model.Fixture.GuestTeam)
</td>
<td>
    @Html.DisplayFor(modelItem => Model.Fixture.Group)
</td>
<td>
    @Html.TextBoxFor(modelItem => Model.GoalsHome, new { style = "width: 30px" }):
    @Html.TextBoxFor(modelItem => Model.GoalsGuest, new { style = "width: 30px" })
</td>
    @Html.HiddenFor(modelItem => Model.FixtureID)
</tr>

回到控制器中,我尝试更新模型:

    [HttpPost]
    public ActionResult Index(FormCollection collection)
    {
        var user = User.Identity.Name;
        var model = _db.Bets.Where(t => t.Better == user);
        TryUpdateModel(model);
        _db.SaveChanges();

        return RedirectToAction("Index");
    }

这绝对没有任何作用。实体框架根本不会更新数据库。我什至将表格分开,以便在 html 文件中生成的 bet 标签可以区分(注意名称值之前的 [index]:

 <input data-val="true" data-val-number="The field GoalsHome must be a number." data-val-required="The GoalsHome field is required." name="[1].GoalsHome" style="width: 30px" type="text" value="3" />:
 <input data-val="true" data-val-number="The field GoalsGuest must be a number." data-val-required="The GoalsGuest field is required." name="[1].GoalsGuest" style="width: 30px" type="text" value="0" />

有人能告诉我为什么实体框架不更新数据库吗?对象映射有问题吗?

4

2 回答 2

1

我以前也有同样的问题。MSDN在这个主题上可能会很混乱,但在页面的中途指出,如果您在没有启用代理创建的情况下创建 POCO 实体,则必须在调用 savechanges 之前调用 detectchanges。

TryUpdateModel(model);
_db.DetectChanges();
_db.SaveChanges();
于 2012-05-19T02:02:35.633 回答
0

好的,看来我找到了一种无需使用 TryUpdateModel 方法即可更新数据库的方法。由于 html 帖子中发送的项目是可区分的,因此我可以向控制器方法添加一个参数,该参数保存我从视图中获得的赌注。然后,我遍历数据库中的结果,并使用视图中投注的字段值更新更改的字段:

    [HttpPost]
    public ActionResult Index(FormCollection collection, List<Bet> bets)
    {
        var user = User.Identity.Name;
        var model = _db.Bets.Where(t => t.Better== user);
        int i = 0;
        foreach (var bet in model)
        {
            Bet the_Bet= bets.Find(
                delegate(Bet _bet)
                {
                    return _bet.BetID == bet.BetID;
                });
            bet.GoalsHome= the_Bet.GoalsHome;
            bet.GoalsGuest= the_Bet.GoalsGuest;
            i++;
        }
        _db.SaveChanges();

        return RedirectToAction("Index");
    }

我想知道是否还有办法让它与 TryUpdateModel 方法一起使用。

于 2012-05-19T10:44:33.283 回答