How to use ISearchableTree for Custom Section search
public class CustomTreeController : TreeController, ISearchableTree
{
public IEnumerable<SearchResultItem> Search(string query, int pageSize, long pageIndex, out long totalFound, string searchFrom = null)
{ var results = GetMyResult(); totalFound = results.Count(); return ????
}
}
How to use ISearchableTree for Custom Section search
is working on a reply...