次の方法でLinqを使用してSitecoreサブアイテムのリストを並べ替え、「sortedlist」を次のように変換/キャストするにはどうすればよいでしょうかSitecore.Data.Items.Item[]
。
...
Sitecore.Data.Items.Item[] subitems = current.SelectItems(query);
var sortedList = (from entry in subitems orderby entry.Fields["Title"].Value ascending select entry);
...
注:クエリでの並べ替えに失敗しました。