upper method

Expression<String> upper()

Calls the sqlite function UPPER on this string. Please note that, in most sqlite installations, this only affects ascii chars.

See also:

Implementation

Expression<String> upper() {
  return FunctionCallExpression('UPPER', [this]);
}