views:

25

answers:

2

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'. 
A: 

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

John Nelson