xData filter using contains without case sensitive (ilke)

Hi,
is there a way to filter Xdata request using Aurelius ilike feature?
$filter=contains(fieldname,'Value') is case sensitive about 'Value' content regarding content of fieldname (VALUE is not similare to value).

Thanks

Self solved

Solution is combining upper (or lower) with right prepared criteria
$filter=contains(lower(fieldname),'value')
with value prepared as lowercase from app requested criteria

1 Like

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.