[Question] any way to use _ILIKE_ operator?
Author: AdibovCreated Dec 13, 2022Updated Aug 21, 2025
Description
I need to use the ILIKE operator on my FilterType so that the filter result becomes case-insensitive. Any other way to support a case-insensitive search on the table?
Thanks in advance
Example code
info.AddField("Name", "name", db.Varchar).
FieldFilterable(types.FilterType{Operator: types.FilterOperatorLike}).FieldSortable() // use Ilike operator insteadSource: GoAdminGroup/go-admin