hi,
I have different fetchxml queries in my portal (one added in liquid, one used via an entity view) for which the results should be in sync, but they aren't. I suppose it has to do with caching, the cache is flushed at different moments for these queries.
What can I do about it?
I tried disabling query caching (but this will impact performance) :
To disable caching of the liquid fetchxml, I have added this condition in the query :
<condition attribute="createdon" operator="le" value='{{ now | date: "yyyy-MM-ddTHH:mm:ss" }}' />
How can I do the same in my entity view query, as I can't add liquid syntax to it?
thanks