我剛剛添加Dynamic Data Filtering庫到基於實體框架的動態數據網絡應用程序,但試圖訪問List.aspx時,我得到以下錯誤。在.NET 4上有什麼我可以做的嗎?錯誤使用ASP.NET動態數據過濾與實體框架
The method 'Skip' is only supported for sorted input in LINQ to Entities. The method 'OrderBy' must be called before the method 'Skip'.
我剛剛添加Dynamic Data Filtering庫到基於實體框架的動態數據網絡應用程序,但試圖訪問List.aspx時,我得到以下錯誤。在.NET 4上有什麼我可以做的嗎?錯誤使用ASP.NET動態數據過濾與實體框架
The method 'Skip' is only supported for sorted input in LINQ to Entities. The method 'OrderBy' must be called before the method 'Skip'.
我有一個沒有動態數據過濾庫的問題。
我使用項目模板解決了它:動態數據實體web應用程序。
我發現頁面
的解決方案http://blog.davidyack.com/journal/2008/5/21/dynamic-data-choosing-the-right-template.html
我也遇到過這個錯誤。就像它說的那樣,只需在查詢中的跳過之前添加一個OrderBy即可。