Hi
I want to declare var Result once only. How it can be declared
var Result = (from t2 in context.View_GroupParticipants select new { t2.StudentID, Name = t2.Name + " - " + t2.MobileNo }).OrderBy(x => x.Name).Distinct().ToList();
Thanks