使用实体框架进行 ASP.NET 动态数据筛选时出错
我刚刚将动态数据过滤库添加到基于实体框架的动态数据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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我也遇到过这个错误。只需在查询中的 Skip 之前添加 OrderBy 即可,就像它所说的那样。
I've run into this error too. Just add an OrderBy before the Skip in your query, just like it says.
我在没有动态数据过滤库的情况下遇到了这个问题。
我通过使用项目模板解决了这个问题:动态数据实体 Web 应用程序。
我在页面上找到了解决方案
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