This question is locked. New answers and comments are not allowed.
I have wrote this code and when I run it it generates this error:
BackendQuery = '(result).BackendQuery' threw an exception of type 'Telerik.OpenAccess.OpenAccessException'
| var dates = new List<string>(); |
| foreach (RadDate rD in dTC) |
| { |
| dates.Add(rD.Date.ToString()); |
| } |
| var result = from a in scope.Extent<Proj>() where dates.Contains(a.ETADate) |
| orderby a.ETADate descending, a.ArriveTime descending |
| select a; |
Any ideas why this is not working?