Я использую linq с SQL CE, но для простого запроса, подобного этому:
var points=from i in this.DomainBoundaryPoints orderby i.Index select i;
Я получаю эту ошибку:
Could not find an implementation of the query pattern for source type 'System.Data.Linq.EntitySet<DAL.DomainBoundaryPoint>'. 'OrderBy' not found. Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'?
Поддерживает ли SQL CE предложение «сортировать по» TSQL? Где проблема?