* Checks whether this EntityManager is currently operating inside a database transaction.
()
| 2642 | * Checks whether this EntityManager is currently operating inside a database transaction. |
| 2643 | */ |
| 2644 | isInTransaction(): boolean { |
| 2645 | return !!this.getContext(false).#transactionContext; |
| 2646 | } |
| 2647 | |
| 2648 | /** |
| 2649 | * Gets the transaction context (driver dependent object used to make sure queries are executed on same connection). |
no test coverage detected