Hi
I have below code but it is not sorting by Date
List<Session> Result = (from t in context.Sessions where t.GroupID == GroupID orderby t.SessionDate select t).ToList();
Thanks