compile method
Writes this expression's SQL, binding any values through parameters.
Implementation
@override
String compile(MssqlParameterAllocator parameters, MssqlDialect dialect) {
final bound = values.map(parameters.bind).join(', ');
return '${operand.compile(parameters, dialect)} '
'${negated ? 'NOT IN' : 'IN'} ($bound)';
}