November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I would setup an extension method or a readonly property that returns something that works well with Find filtering and the input data in question.
I agree with Johan, you should/can add an extensions method that converts the list of cultureinfo to a list of strings (I do not think ToString do that) and add that to the indexeing and then filter on that.
This has been resolved Using ExistingLanguages() from EPiServer.Find.Cms instead of the ExistingLanguages property from the EPiServer.Core.PageData.
It returns IEnumerable<string> instead of IEnumerable<CultureInfo>.
The final codebase looks like this,
.Filter(x => !((PageData)(object)x).ExistingLanguages().MatchCaseInsensitive(lang))
PageLanguages property in PageData is deprecated.
It suggests to use ExistingLanguages property instead of the PageLanguages.
However, when comes to the filtering, previously the language filtering has been handled by
But when used the below,
it gives a different result.
How to get the same result as before by using the ExistingLanguages property (or from other property)? Thanks in advance.
Note: I am working on EPiServer.Find.Cms --> 12.7.1.0 , CMS ---> 11.5.1.0