gpt4 book ai didi

asp.net-mvc-3 - ASP.Net MVC 3,复杂对象和延迟加载

转载 作者:行者123 更新时间:2023-12-04 07:34:21 26 4
gpt4 key购买 nike

首先,我是 ASP.Net MVC 3 的新手,而且我也在使用 EF 4.1。

我有一个复杂的对象,类似于包含类别对象的产品对象。所以我们有 Product.CategoryId、Product.Category 和一些额外的属性。我还有一个用于创建产品的表单,其中包含用于选择类别的下拉列表。

在我的 Controller 中,创建产品后,我需要访问类别的某些属性以执行一些额外的操作。但是,尽管设置了 Product.CategoryId,但我无法访问 Product.Category.SomeProperty,因为 Product.Category 为空。我预计 Product.Category 会使用一些延迟加载自动加载,但它似乎不是。

我的 Controller 中的代码如下所示:

[HttpPost]
public ActionResult Create(Product product)
{
if (ModelState.IsValid)
{
db.Products.Add(product);
db.SaveChanges();

string someString = product.Category.SomeProperty;
...

现在,这不起作用,因为 product.Category 为空。我需要添加什么才能访问 SomeProperty?

最佳答案

延迟加载在这种情况下不起作用,因为您要添加一个新对象。延迟加载将适用于 EF 上下文创建的“代理”实体。

所以你在这里可以做的是explicitly load导航属性。

    db.Products.Add(product);
db.SaveChanges();

db.Entry(product).Reference(p => p.Category).Load();

string someString = product.Category.SomeProperty;

关于asp.net-mvc-3 - ASP.Net MVC 3,复杂对象和延迟加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7138904/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com