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