(condition: string)
| 188 | } |
| 189 | |
| 190 | rawWhere(condition: string): this { |
| 191 | if (condition) { |
| 192 | this._where.push({ condition, operator: 'AND' }); |
| 193 | } |
| 194 | return this; |
| 195 | } |
| 196 | |
| 197 | orWhere(column: string, operator: Operator, value?: SqlParam): this { |
| 198 | const condition = this.buildCondition(column, operator, value); |
no test coverage detected