toUpperCase method
Converts the string to upper case.
This is equivalent to UPPER(this) in SQL.
Warning
For non-ascii characters the behavior may depend on database specifics and configuration.
Implementation
Expr<String> toUpperCase() => ExpressionStringToUpperCase(this);