i have a mapped-class like this:
[Table(\"MyTable\")] class MyClass { //properties; id, name, etc... private string _queuedToWHTime
You cannot query with EF on custom properties. The custom property cannot be translated in SQL.
You can do this to force the orderby to be done 'in-memory'.
var searchRslt = queryableNews .AsEnumerable() .OrderBy(m => m.QueuedToWHTime_DateTime) .ToList();