Opticon Stockholm is on Tuesday September 10th, hope to see you there!
AI OnAI Off
Opticon Stockholm is on Tuesday September 10th, hope to see you there!
Try adding a Filter with the Ancestors method. Example: .Filter(x => x.Ancestors().Match(myContentLink))
Hope this helps.
Frederik
Ancestors will work, but "x" in this case will be ISearchContent, so you'll need to cast to IContent:
.Filter(x => ((IContent)x).Ancestors().Match("9"))
I want to have two search pages. One which search the entire site and one that just searches in just a specific page node. I want to return both pages and related media. How would I go about doing this?