(em: SqlEntityManager, options: MikroKyselyPluginOptions = {})
| 72 | readonly #options: MikroKyselyPluginOptions; |
| 73 | |
| 74 | constructor(em: SqlEntityManager, options: MikroKyselyPluginOptions = {}) { |
| 75 | super(); |
| 76 | this.#em = em; |
| 77 | this.#options = options; |
| 78 | this.#metadata = em.getMetadata(); |
| 79 | this.#platform = em.getDriver().getPlatform(); |
| 80 | } |
| 81 | |
| 82 | reset(): void { |
| 83 | this.#subqueryAliasMap.clear(); |
nothing calls this directly
no test coverage detected