(column: string, operator: Operator, value?: SqlParam)
| 182 | } |
| 183 | |
| 184 | andWhere(column: string, operator: Operator, value?: SqlParam): this { |
| 185 | const condition = this.buildCondition(column, operator, value); |
| 186 | this._where.push({ condition, operator: 'AND' }); |
| 187 | return this; |
| 188 | } |
| 189 | |
| 190 | rawWhere(condition: string): this { |
| 191 | if (condition) { |
no test coverage detected