sitecore/content/data/MyItem に保存されている最後のアイテムの「ID」(フィールド) を取得する必要がある検索を実行しています。このフォルダに格納されているアイテムの数は 1000 以上です。Lucene 検索がはるかに効率的であることはわかっています。Lucene 検索を実行して、次のような値に基づいてアイテムを取得しました。
using (IndexSearchContext searchContext = indx.CreateSearchContext())
{
var db = Sitecore.Context.Database;
CombinedQuery query = new CombinedQuery();
QueryBase catQuery = new FieldQuery("country", guidValueToSearch); //FieldName, FieldValue.
SearchHits results = searchContext.Search(catQuery); //Searching the content items by fields.
SearchResultCollection result = results.FetchResults(0, numOfArticles);
ここでは、項目のguidValueToSearchを渡し、「country」フィールドの値を取得する必要があります。しかし、フォルダー内の最後のアイテムを取得したい。どうすればこれを達成できますか?