こんにちは、umbraco でインデックスを作成して、ユーザー コントロールを作成し、検索条件とフィルターを作成した umbraco の任意のキーワードを検索しましたが、エイリアス名 bodyText を含むノードのリストを表示していますが、そうでないすべてのノードのリストが必要ですすべてのプロパティ エイリアス名 bodytext を指定することはできないため、エイリアス名 bodytext を使用します。umbraco ですべてのノードとすべてのプロパティを検索するにはどうすればよいですか
protected void Page_Load(object sender, EventArgs e)
{
SearchTerm = Request.QueryString["s"];
if (string.IsNullOrEmpty(SearchTerm)) return;
var criteria = ExamineManager.Instance
.SearchProviderCollection["DemoSearcher"]
.CreateSearchCriteria(UmbracoExamine.IndexTypes.Content);
var filter = criteria
.GroupedOr(new string[] { "nodeName", "bodyText" }, SearchTerm)
.Compile();
SearchResults = ExamineManager.Instance.SearchProviderCollection["DemoSearcher"].Search(filter);
SearchResultListing.DataSource = SearchResults;
SearchResultListing.DataBind();
}