ExpressionNullableString extension

Extension methods for nullable String expressions.

on

Methods

equals(Expr<String> value) Expr<bool>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Compare this expression to value using = in SQL coalesced to FALSE.
equalsUnlessNull(Expr<String?> value) Expr<bool?>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Compare this expression to value using =.
equalsValue(String value) Expr<bool>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Compare this expression to value using = in SQL coalesced to FALSE.
isNotDistinctFrom(Expr<String?> value) Expr<bool>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Compare this expression to value using IS NOT DISTINCT FROM.
isNotNull() Expr<bool>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Check if this expression is not NULL.
isNull() Expr<bool>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Check if this expression is NULL.
notEquals(Expr<String> value) Expr<bool>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Compare this expression to value using <> in SQL.
notEqualsValue(String value) Expr<bool>

Available on Expr<String?>, provided by the ExpressionNullableString extension

Compare this expression to value using <> in SQL.
orElse(Expr<String> value) Expr<String>

Available on Expr<String?>, provided by the ExpressionNullableString extension

If this expression is NULL, use value instead.
orElseValue(String value) Expr<String>

Available on Expr<String?>, provided by the ExpressionNullableString extension

If this expression is NULL, use value instead.