unless method
MssqlQuery
unless(
- bool condition,
- MssqlQuery build(
- MssqlQuery query
- MssqlQuery otherwise(
- MssqlQuery query
when, inverted.
Implementation
MssqlQuery unless(
bool condition,
MssqlQuery Function(MssqlQuery query) build, {
MssqlQuery Function(MssqlQuery query)? otherwise,
}) => when(!condition, build, otherwise: otherwise);