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 instead
Description
I need to use the
ILIKEoperator on myFilterTypeso that the filter result becomes case-insensitive. Any other way to support a case-insensitive search on the table?Thanks in advance
Example code