ExpressionNullableString extension
Extension methods for nullable String expressions.
Methods
-
equals(
Expr< String> value) → Expr<bool> -
Available on Expr<
Compare this expression toString?> , provided by the ExpressionNullableString extensionvalue
using=
in SQL coalesced toFALSE
. -
equalsUnlessNull(
Expr< String?> value) → Expr<bool?> -
Available on Expr<
Compare this expression toString?> , provided by the ExpressionNullableString extensionvalue
using=
. -
equalsValue(
String value) → Expr< bool> -
Available on Expr<
Compare this expression toString?> , provided by the ExpressionNullableString extensionvalue
using=
in SQL coalesced toFALSE
. -
isNotDistinctFrom(
Expr< String?> value) → Expr<bool> -
Available on Expr<
Compare this expression toString?> , provided by the ExpressionNullableString extensionvalue
usingIS NOT DISTINCT FROM
. -
isNotNull(
) → Expr< bool> -
Available on Expr<
Check if this expression is notString?> , provided by the ExpressionNullableString extensionNULL
. -
isNull(
) → Expr< bool> -
Available on Expr<
Check if this expression isString?> , provided by the ExpressionNullableString extensionNULL
. -
notEquals(
Expr< String> value) → Expr<bool> -
Available on Expr<
Compare this expression toString?> , provided by the ExpressionNullableString extensionvalue
using<>
in SQL. -
notEqualsValue(
String value) → Expr< bool> -
Available on Expr<
Compare this expression toString?> , provided by the ExpressionNullableString extensionvalue
using<>
in SQL. -
orElse(
Expr< String> value) → Expr<String> -
Available on Expr<
If this expression isString?> , provided by the ExpressionNullableString extensionNULL
, usevalue
instead. -
orElseValue(
String value) → Expr< String> -
Available on Expr<
If this expression isString?> , provided by the ExpressionNullableString extensionNULL
, usevalue
instead.