I have below codes:
{% assign theDate = now | date: 'yyyy-MM-dd' %}
{% capture effectiveDate %}
(column1 on-or-after {{ theDate }} and column2 on-or-before {{ theDate }})
{% endcapture %}
{% entityview id:params.view, search:params.search, order:params.order, page:params.page, pagesize:params.pagesize, metafilter:effectiveDate %}
But, It can't filter entityview result, How to make it effective.