Ramco Ramco

Ramco Ramco

  • 441
  • 3.4k
  • 522.7k

Not sorting By Date

Apr 2 2023 10:31 AM

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


Answers (3)