ktorm
ktorm copied to clipboard
Please add support for ILIKE
Similar to the like operator, but case-insensitive. Could be implemented as-is by using the ILIKE SQL operator, or could be emulated by using the LOWER() SQL function: Persons.name.lower().like("foo%").