使用实体框架进行 ASP.NET 动态数据筛选时出错

发布于 2024-09-07 03:20:32 字数 336 浏览 9 评论 0原文

我刚刚将动态数据过滤库添加到基于实体框架的动态数据Web应用程序 em>,但在尝试访问 List.aspx 时,出现以下错误。在 .NET 4 上我能做些什么吗?

The method 'Skip' is only supported for sorted input in LINQ to Entities. The method 'OrderBy' must be called before the method 'Skip'. 

I have just added the Dynamic Data Filtering library to an Entity Framework based Dynamic Data web application, but on trying to access List.aspx, I get the following error. Is there anything I can do about this on .NET 4?

The method 'Skip' is only supported for sorted input in LINQ to Entities. The method 'OrderBy' must be called before the method 'Skip'. 

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

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

发布评论

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

评论(2

深府石板幽径 2024-09-14 03:20:34

我也遇到过这个错误。只需在查询中的 Skip 之前添加 OrderBy 即可,就像它所说的那样。

I've run into this error too. Just add an OrderBy before the Skip in your query, just like it says.

宁愿没拥抱 2024-09-14 03:20:33

我在没有动态数据过滤库的情况下遇到了这个问题。

我通过使用项目模板解决了这个问题:动态数据实体 Web 应用程序


我在页面上找到了解决方案

http:// blog.davidyack.com/journal/2008/5/21/dynamic-data-choosing-the-right-template.html

I've had that problem one without Dynamic Data Filtering library.

I solved it by using the project template: dynamic data entities web application.


I found the solution on the page

http://blog.davidyack.com/journal/2008/5/21/dynamic-data-choosing-the-right-template.html

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