buildQueryForOperand static method
Get a sql statement to joint operand like (+, >) with another field or value.
Implementation
static String buildQueryForOperand(dynamic v) =>
v is QueryPart ? v.buildQuery() : '?';
Get a sql statement to joint operand like (+, >) with another field or value.
static String buildQueryForOperand(dynamic v) =>
v is QueryPart ? v.buildQuery() : '?';