2016-04-07 46 views
4

我使用Lucene搜索,獲得一些字符串過濾桶的項目,這是我的代碼:Sitecore的 - 讓所有索引項

var innerQuery = new FullTextQuery(myString); 
        var hits = searchContext.Search(innerQuery, searchIndex.GetDocumentCount()); 

有一些查詢或不同的東西,可以讓我得到的所有索引項?我嘗試用空的「myString」,但有一個錯誤,它不能爲空。

回答

2

您可以使用Lucene.Net.Search.MatchAllDocsQuery

SearchHits hits = searchContext.Search(new MatchAllDocsQuery(), int.MaxValue); 
+0

感謝您的幫助:) – petros