coalesce function

MssqlExpression coalesce(
  1. Iterable<MssqlExpression> operands
)

COALESCE(a, b, …): the first operand that is not null.

Implementation

MssqlExpression coalesce(Iterable<MssqlExpression> operands) =>
    MssqlCoalesce(operands);