保存 EF 中的更改

发布于 2024-11-08 04:57:06 字数 519 浏览 0 评论 0原文

我有一个 Quiz.Component.Product.Type 和一个提供该组件的视图。当调用 Create postback 时,由于视图包含 Component_Id 字段,模型绑定器为我创建一个 Quiz.Component 并设置 .Id > 到正确的值;所有其他字段都保持为空,因此 Product 也是如此,这意味着当我 .Add() 并尝试 .SaveChanges() 时,它会抱怨组件参与关系(与产品)并且预期有产品。

这意味着我必须这样做:

[HttpPost] ActionResult Create(Quiz q)
{
    q.Product = db.Components.Where(x => x.Id == q.Component.Id).Product;
    ...
}

这可能要求太多,但是,有没有办法让 EF 为我做这些查找?

I have a Quiz.Component.Product.Type and a view that provides the component. when the Create postback is called, because the view contains a Component_Id field, the model binder creates a Quiz.Component for me and sets the .Id to the correct value; all the other fields remain null and therefore so does Product, which means that when I .Add() and try to .SaveChanges() it complains that components participate in a relationship (with products) and that a product is expected.

this means I have to do:

[HttpPost] ActionResult Create(Quiz q)
{
    q.Product = db.Components.Where(x => x.Id == q.Component.Id).Product;
    ...
}

this might be asking too much but, is there a way I can have EF do those lookups for me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各空 2024-11-15 04:57:06

要求太多了。这是可以使用的一种策略。在 POST 操作中,使用 id 获取相应的模型,然后对其进行 TryUpdateModel 来更新属性,最后调用 SaveChanges。

这是一个常用的范例:

[HttpPost]
public ActionResult Edit(int id)
{
    var model = db.SomeModel.Single(x => x.ID == id);
    if (TryUpdateModel(model))
    {
        db.SaveChanges();
        return RedirectToAction("Index");
    }
    return View(model);
}

It's asking too much. That's one strategy that could be used. In the POST action fetch the corresponding model using the id and then TryUpdateModel on it to update properties and finally invoke SaveChanges.

This is a commonly used paradigm:

[HttpPost]
public ActionResult Edit(int id)
{
    var model = db.SomeModel.Single(x => x.ID == id);
    if (TryUpdateModel(model))
    {
        db.SaveChanges();
        return RedirectToAction("Index");
    }
    return View(model);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文