(column: string, operator: Operator, value?: SqlParam)
| 195 | } |
| 196 | |
| 197 | orWhere(column: string, operator: Operator, value?: SqlParam): this { |
| 198 | const condition = this.buildCondition(column, operator, value); |
| 199 | this._where.push({ condition, operator: 'OR' }); |
| 200 | return this; |
| 201 | } |
| 202 | |
| 203 | // Group by methods |
| 204 | groupBy(columns: (string | null | undefined | false)[]): this { |
no test coverage detected