(column: string, operator: Operator, value?: SqlParam)
| 147 | } |
| 148 | |
| 149 | where(column: string, operator: Operator, value?: SqlParam): this { |
| 150 | if (this._skipNext) { |
| 151 | return this; |
| 152 | } |
| 153 | const condition = this.buildCondition(column, operator, value); |
| 154 | this._where.push({ condition, operator: 'AND' }); |
| 155 | return this; |
| 156 | } |
| 157 | |
| 158 | public buildCondition( |
| 159 | column: string, |