Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi,
I have some code lines as this
var markets = _marketService.GetAllMarkets(); foreach(var m in markets) { conventionBuilder.IncludeField(x => x.DefaultPriceByMarket(m.MarketId)); }
And I expected that Find would indexed n field correspond the quantity of market but I see only 1 field DefaultPriceByMarket with 1 product in Find Explore (as below)
"m.MarketId.DefaultPriceByMarket$$number": 32.5,
How can I index all DefaultPrice of all market? And what is the name of those fields that I can use in code?
Thank you for your answer,