are you actually assigning the value?
Assuming you have a variable named "filter", you should do
filter = filter.And(...)
Hi Per
Thanks for the reply. It was the one thing I was missing. I've even done it on all my other filters, how very frustrating!
Thanks!
When applying a Range Filter, using the InRange extension method, the HasFilter property of the Filter is false and the actual filter doesn't apply. My code building the filter is below (x is a VariationContent with a property added called SalePrice, which populates with the price of the variant):
I've checked the value of minPrice and maxPrice and in the example I'm using they're set at 250 and 399 respectively. Despite that, the result set I'm returned contains variants with a SalePrice of < 250.
Where am I going wrong??
Thanks