Ramco Ramco

Ramco Ramco

  • 457
  • 3k
  • 421.5k

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)