Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Have you done any special settings for unified search?
You do not need to use InAllFields when doing a unified search, but the result should be the same with or without it.
We do some work to include metadata, but makes no difference if that code is there or not. Example:
SearchClient.Instance.Conventions.UnifiedSearchRegistry
.ForInstanceOf<FAQItemPage>()
.ProjectMetaDataFrom(x => x.ExtendedMetaData())
.ProjectTitleFrom(x => x.Question);
Hi, I'm having an issue where unifiedSearch doesn't find anything on a certain page type.
I can see the page type is being indexed under Episerver Find in admin.
This code get results of type FAQItemPage: _epiFindClient.Search).For("episerver").GetContentResult();
While this doesnt find anything of type FAQItemPage : _epiFindClient.UnifiedSearch().For(“episerver”).InAllField().Take(1000).GetResult();
Anybody have any clues on how to debug this?