buildQueryForOperand static method

String buildQueryForOperand(
  1. dynamic v
)

Get a sql statement to joint operand like (+, >) with another field or value.

Implementation

static String buildQueryForOperand(dynamic v) =>
    v is QueryPart ? v.buildQuery() : '?';