(column: string, operator: Operator, value: SqlParam)
| 227 | } |
| 228 | |
| 229 | orHaving(column: string, operator: Operator, value: SqlParam): this { |
| 230 | const condition = this.buildCondition(column, operator, value); |
| 231 | this._having.push({ condition, operator: 'OR' }); |
| 232 | return this; |
| 233 | } |
| 234 | |
| 235 | // Order by methods |
| 236 | orderBy(column: string, direction: 'ASC' | 'DESC' = 'ASC'): this { |
nothing calls this directly
no test coverage detected