Ok, i'll try to update my previous question.
There is a query i'm using.
TreeProvider .SelectNodes() .OnCurrentSite() .InEnabledCategories(GetAllPdfCategories()) .Type(DocumentPDFPageType.ClassName) .WhereContains(DocumentPDFPageType.TitlePortalName, searchText);
How can I update this query, so it will search in Summary column too?
I tried to add Or().WhereContains(DocumentPDFPageType.SummaryPortalName, searchText);
Or().WhereContains(DocumentPDFPageType.SummaryPortalName, searchText);
but it is working incorrectly.
Hello
You can normally achieve something similar with Nested where conditions. Have a look at this page for some guidance.
Nested where conditions
Thanks Ilesh
Wow, thank you, Ilesh!
Please, sign in to be able to submit a new answer.