ViewResult 没有返回数据

发布于 2024-09-16 03:30:58 字数 645 浏览 8 评论 0原文

我正在使用 NerdDinner 中的模式。我在测试方法中调用 Index() ,但返回的 ViewREsult 没有数据。因此变量data最终为空。

但是,我知道那里有数据。因为我可以转到监视窗口并展开变量结果并展开viewData->Model->ResultsView,然后我看到“展开将结果视图将枚举IEnumerable”当我展开它时,数据就存在。

知道为什么除非我扩展,否则数据会返回空吗?

谢谢 贾斯

   [TestMethod]
    public void Index__Should_Return_1_or_More_lessons()
    {
        var controller = new LessonController(new FakeLessonRepository());

        var result = controller.Index() as ViewResult;

        var data = result.ViewData.Model as IList<Lesson>;
        Assert.IsTrue(data.Count > 0);
    }

I am using the pattern from NerdDinner. I call Index() in my test Method and I the ViewREsult I get back has no data. So the variable data ends up being null.

However, I know that there is data there. Because I can go to the watch window and expand the variable result and expand viewData->Model->ResultsView then I see the "expanding will result view will enumerate the IEnumerable" When I expand it, the data exists.

Any idea why the data comes back null unless I expand?

thanks
Jas

   [TestMethod]
    public void Index__Should_Return_1_or_More_lessons()
    {
        var controller = new LessonController(new FakeLessonRepository());

        var result = controller.Index() as ViewResult;

        var data = result.ViewData.Model as IList<Lesson>;
        Assert.IsTrue(data.Count > 0);
    }

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

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

发布评论

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

评论(1

莫相离 2024-09-23 03:30:58

这是因为 Linq 或 EF 中的延迟加载(取决于您使用的内容)仅在需要时执行。您可以通过调用像 ToList() 或 ToArray() 或类似的东西这样的终结器来强制执行它。

It's because of Lazy Loading in Linq or EF (depending on what you're using) The queries are only executed when needed. You can force it to be executed by calling a finalizer like ToList() or ToArray() or something similar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文