Transient Field not visible in browse search filter

Hi,

If i had marked a field as Transient in entity that field is not visible in search filter.

@JmixProperty
@Transient
private String casePendingWith;

Any solution to add extra column which are not present in tables.

Hello,

The search term from the genericFilter is embedded directly into the JPQL query, so non-persistence fields are not shown in the filter.

As a solution, you can implement data filtering programmatically or create a persistence field in the entity

Regards,
Nikita

Is it possible to setvalues to any non Transient fields in @Install valueProvider at runtime and filter on basis of that set values by updating CollectionLoader or any other way.

I tried setting in @Install valueProvider data is visible on browse screen but filter is not working showing no data found.