* Configures cancellation behavior for this query builder. The signal is forwarded to the * underlying database client; see {@apilink AbortQueryOptions} for the available strategies.
(options: AbortQueryOptions | undefined)
| 2955 | * underlying database client; see {@apilink AbortQueryOptions} for the available strategies. |
| 2956 | */ |
| 2957 | setAbortOptions(options: AbortQueryOptions | undefined): void { |
| 2958 | this.#abortOptions = options; |
| 2959 | } |
| 2960 | |
| 2961 | private fromVirtual<T extends object>(meta: EntityMetadata<T>): string { |
| 2962 | if (typeof meta.expression === 'string') { |
no outgoing calls
no test coverage detected