我有下面的代码来检索数据
Type dType = TypeResolutionService.ResolveType("Telerik.Sitefinity.DynamicTypes.Model.Schedule.ScheduleManagement");
// This is how we get the collection of event items
var myCollection = dynamicModuleManager.GetDataItems(dType).Where(i => i.Status == ContentLifecycleStatus.Live && i.Visible && i.GetValue<string>("Title").ToString() == channel + " Schedule").FirstOrDefault();
// At this point myCollection contains the items from the the type
return myCollection;
知道如何对选择的数据进行排序吗?请帮忙。