London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Hi!
No need to use the build filter functionality in this case. You coud simply use MatchContained:
.Filter(x => x.MarketVisible.MatchContained(p => p.ID, contentTypeTags.ID))
Hi,
Any one help me how can match ContentRefrence from Ilist(ContentRefernce ) property using build filder
My code is mentioned below:
private FilterBuilder GetMarketTagFilter(ContentReference contentTypeTags)
{();
var filterBuilder = SearchClient.Instance.BuildFilter
if (contentTypeTags != null)
{
filterBuilder = filterBuilder.Or(x => x.MarketVisible.(contentTypeTags.ID));
}
return filterBuilder;
}
In the above code " MarketVisible" is --Ilist(ContentRefernce ) property
Thanks
Sourav