Sets the flush mode for this EntityManager. Pass `undefined` to reset to the global default.
(flushMode?: FlushMode | `${FlushMode}`)
| 466 | |
| 467 | /** Sets the flush mode for this EntityManager. Pass `undefined` to reset to the global default. */ |
| 468 | setFlushMode(flushMode?: FlushMode | `${FlushMode}`): void { |
| 469 | this.getContext(false).#flushMode = flushMode as FlushMode; |
| 470 | } |
| 471 | |
| 472 | protected async processWhere< |
| 473 | Entity extends object, |
no test coverage detected