我刚刚将Dynamic Data Filtering库添加到基于Entity Framework的动态数据Web 应用程序,但在尝试访问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'.
答案 0 :(得分:2)
我遇到了没有动态数据过滤库的问题。
我使用项目模板解决了它:动态数据实体Web应用程序。
我在页面上找到了解决方案
http://blog.davidyack.com/journal/2008/5/21/dynamic-data-choosing-the-right-template.html
答案 1 :(得分:1)
我也遇到过这个错误。只需在查询中跳过之前添加一个OrderBy,就像它说的那样。