How to use GUI component "Filter" with transient fields

Hi team,

The Filter component is really convenient with powerful functions, like quick search, persisting user filter etc.

But my entity has some transient fields should be enriched by fetching cache. From doucmentation, I see Filter only support persisted column.

Is there anyway I can reuse maximally the Filter to search with both persisted and non-persisted columns?

Please kindly advise. Many thanks!!

Hi,

The generic filter works on the database level by modifying the executed JPQL query.
So unfortunately, it cannot refer transient fields of your entity.

noted, thank you