You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The lower function was added to sea-query "0.24.0", but sea-orm 0.7.1 depends on sea-query "0.23.0".
Background
We're migrating a project from Diesel to sea-orm, and need the lower function to perform a case-insensitive compare.
Updating the dependency will allow us to write something like:
let like = format!("%{}%",default.to_lowercase());Expr::expr(Func::lower(Expr::col(column))).like(&like)
Description
The
lower
function was added to sea-query "0.24.0", but sea-orm 0.7.1 depends on sea-query "0.23.0".Background
We're migrating a project from Diesel to sea-orm, and need the lower function to perform a case-insensitive compare.
Updating the dependency will allow us to write something like:
which can be used to produce something like:
Versions
sea-orm v0.7.1
Additional Information
I'll submit a pull request to update the dependency and link it with this issue.
The text was updated successfully, but these errors were encountered: