Currently, ExoQuery lacks direct support for the SQL LIKE operator, requiring us to implement it via a free function.
where { free("$name LIKE 'test%'").asPure<Boolean>() }
Given that LIKE is a frequently used SQL operator, it would be ideal to have a built-in function for it within a capture block.
Currently, ExoQuery lacks direct support for the SQL
LIKEoperator, requiring us to implement it via afreefunction.where { free("$name LIKE 'test%'").asPure<Boolean>() }Given that LIKE is a frequently used SQL operator, it would be ideal to have a built-in function for it within a capture block.