* @internal
(entityName: string | EntityName = 'e')
| 2401 | * @internal |
| 2402 | */ |
| 2403 | getNextAlias(entityName: string | EntityName = 'e'): string { |
| 2404 | entityName = Utils.className(entityName); |
| 2405 | return this.driver.config.getNamingStrategy().aliasName(entityName, this.#state.aliasCounter++); |
| 2406 | } |
| 2407 | |
| 2408 | /** |
| 2409 | * Registers a join for a specific polymorphic target type. |
no test coverage detected