gpt4 book ai didi

c# - 深入理解MVC .net中的延迟加载和处理错误

转载 作者:太空狗 更新时间:2023-10-29 23:22:49 27 4
gpt4 key购买 nike

我试图为以下问题写一个完整详细的答案: Why does "Dispose" work, and not "using(var db = new DataContext())"?

所以我设置了我的项目,包括:

使用 Entity Framework 的部门和员工

所以我的操作方法是这样的:

public ActionResult Index()
{

IEnumerable<department> d;
using (var ctx = new ApplicationDbContext())
{

d = ctx.departments;

}


return View(d);
}

很自然地期望这会导致常见错误:

The operation cannot be completed because the DbContext has been disposed

当我想解决它时,我做了以下 [强制预加载而不是轻松加载]:

 public ActionResult Index()
{

IEnumerable<department> d;
using (var ctx = new ApplicationDbContext())
{

d = ctx.departments.toList();

}


return View(d);
}

所以我试图了解引擎盖下的东西并查看 View() 方法的返回类型。我得出了以下“正确”假设:

1- 模型 [d] 在 using 语句中以延迟加载方式调用。

2- 所以当模型 [d] 被发送到 View 以生成页面时,DbContext 已经由 using 语句的最后一个大括号处理。

3- 我们通过以预加载方式将模型 [d] 发送到 View 来解决这种情况。

然后我继续我的假设,但被证明是“错误的”,如下所示:

4- 因为 View() 方法返回的 ViewResult 对象也是一个 ActionResult..所以我可以在 using 语句中生成这个对象,然后将它返回给用户。

所以我做了以下事情:

public ActionResult Index()
{

ActionResult myView;

using (var ctx = new ApplicationDbContext())
{

IEnumerable<department> d = ctx.departments;

myView = View(d);

}


return myView;
}

所以我现在告诉自己,当我运行它时,ViewResult 对象 [myView] 将已经创建并将返回给用户并且不会遇到错误。

然而,令我惊讶的是,同样的错误发生了:

The operation cannot be completed because the DbContext has been disposed

我很惊讶这个延迟加载是多么的延迟,只在最后一刻才加载。

所以我继续我的“错误”假设如下:

5- 可能我需要强制 View() 方法在 using 语句中执行结果。所以我使用了 ExecuteResult(ControllerContext) 方法。

现在我想我可以毫无错误地运行操作方法但同样的错误再次发生:

The operation cannot be completed because the DbContext has been disposed.

所以我现在的问题是:

延迟加载查询在MVC框架中的什么位置执行!!

或者让我将我的问题改写如下:

为什么 View(d) 方法在 [d] 对象不在 using 语句中时迭代它,而不是当 view(d) 方法在 using 语句中时.

我只需要了解为什么我的假设是错误的..感谢先进

最佳答案

好的。我找到了一个非常有说服力的答案如下:

我开始阅读有关 MVC5 生命周期的内容,并在网上找到了很多文章。其中之一是以下链接:http://www.dotnet-tricks.com/Tutorial/mvc/TbR0041112-Asp.net-MVC-Request-Life-Cycle.html所以我复制了图片并添加了我的评论如下[礼貌:www.dotnet-tricks.com]

enter image description here

然后我读了另一篇文章[这里:http://www.codemag.com/Article/1312081] ,如何将 View 呈现为字符串并将其作为操作方法的返回类型返回。这样我就可以使用延迟加载并在仍在 using 语句内时呈现 View 。

所以我所做的就是对我的操作方法进行以下更改[解释包含在注释中]

 // GET: /dept/
public string Index()
{

IView myView;
string result;
using (var ctx = new ApplicationDbContext())
{
//my model brought using the dbContext
IEnumerable<department> d = ctx.departments;

// now because I want to render the View here [forcibly] and not waiting
//for the normal MVC pipeline to render my View I had to jump to the ViewEngine
//and ask it to render my View [while i am still inside this using statement]
// so referring to the excellent article on :http://www.codemag.com/Article/1312081
//I did the following:
ControllerContext.Controller.ViewData.Model = d;
ViewEngineResult viewEngResult = ViewEngines.Engines.FindView(ControllerContext, "~/Views/dept/Index.cshtml", null);

myView = viewEngResult.View;
//till this point the View is not rendered yet
StringWriter tw = new StringWriter();// used to render the View into string
ViewContext vc = new ViewContext(ControllerContext, myView, ControllerContext.Controller.ViewData, ControllerContext.Controller.TempData, tw);
//it is the following method .Render(viewContext, textWriter) that will start iterating on the IEnumerable<department> object
myView.Render(vc, tw);

result = tw.ToString();// the rendered View is now written as string to the result
tw.Dispose();
}

return result;
}
}

我很高兴看到我的页面成功呈现,没有那个著名的处理错误;查看结果:

enter image description here


总结一下:

我的问题的答案是:

当您从操作方法返回 ViewResult 或 ActionResult 时; View 仍未呈现。一旦它到达 ViewEngine 的管道并且 ViewEngine 触发方法 .Render(),此时延迟加载对象将需要 dbContext 并将导致著名的 dbContext Disposing 错误。我还展示了如何在操作方法本身内渲染 View 。甚至在 dbContext 的 using 语句中;而且我可以避免该处理错误。

谢谢大家:)

关于c# - 深入理解MVC .net中的延迟加载和处理错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23391909/

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