November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
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?