如何使用 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);
...
注意:我没有成功尝试在查询中对其进行排序。