Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Like this?
var result = SearchClient.Instance.Search<PageData>()
.FilterForVisitor()
.OrderByDescending(x => x.StartPublish)
.GetContentResult();
var ContentTypeNameOfFirstReturnedPage = result.Items.First().ContentTypeName();
Episerver version 11.12
Using FIND search
I have a requirement where the client wants to display a different icon depending on the "type" of item that gets returned in the search results. I have a couple of unique page types as well as different media types (PDF, word, excel, etc.) In the searchResultObject, I see a content GUID, but don't know how to find the content type using only that. Can someone help with a way to do this?