7
Answers

Order by Name

Ramco Ramco

Ramco Ramco

1y
475
1

Hi

  In below code i want to order by name

var Result = (from t2 in context.View_SessionDeliveryCalendarDetails_Students
                                  select new { t2.StudentID, Name = t2.Name + " - " + t2.MobileNo }).Distinct().ToList();

Thanks

Answers (7)