IMPORTANT: This version of Sitefinity CMS is out of support and the respective product documentation is no longer maintained and can be outdated. Use the version selector to view a supported product version.
The following methods:
IResultSet Search(ISearchQuery query);
To obtain instance of ISearchQuery, use:
var queryBuilder = ObjectFactory.Resolve<IQueryBuilder>(); var compiledQuery = queryBuilder.BuildQuery(searchTerm, searchFields);
Then pass it to the search service, in the following way:
searchService.Search(compiledQuery); This change affects all classes that implement the ISearchService interface as AzureSearchService. ElasticsearchService and LuceneSearchService.
Also the GetValue method and the Value property are now returning object instead of a string: public object Value public object GetValue(string)
IManager interface has a new RestorePermissionsInheritance() method. The Implementation should call the provider implementation of this method. For example: this.Provider.RestorePermissionInheritance(securedObject);
Back To Top
To submit feedback, please update your cookie settings and allow the usage of Functional cookies.
Your feedback about this content is important