November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Figured out the existing application had IndexInContentArea turned on base block which was missing in new one and causing results to be out of sync. For the moment my issue is resolved but would still appreciate any help on how to debug through find queries.
Hello All,
Looking for some ideas on troubleshooting an issue.
I have a CMS 11 application which is upgraded to CMS 12. I can confirm that code changes for search feature is exactly same in CMS 11 vs CMS 12. The Geta categories is also same. Database content is also same. Only difference is Optimizely packages and Find Version.
However when running same search query with filters gives different results in CMS 11 vs CMS 12. I get two matching results in CMS 11 while 1 in CMS 12. I did scan the find index and can see that the content is identical in existing find index vs new find index.
So the question is how do I go about verifying why below code produces different results when everything is just same.Any inputs is appreciated.
var contentResult = sortedQuery
.Skip(paging.PageSize * paging.PageNumber)
.Take(paging.PageSize)
.GetContentResult();