We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm looking for similar behavior as @nestjs/mongoose:
@nestjs/mongoose
import { Injectable, Logger } from '@nestjs/common'; import { InjectConnection } from '@nestjs/mongoose'; @Injectable() export class MyService { private readonly logger = new Logger(MyService.name); // eslint-disable-next-line no-useless-constructor constructor( @InjectConnection() private dbConnection: Connection, ) {} async test() { const transaction = await this.dbConnection.startSession(); await transaction.withTransaction(async () => { ... /* my transactions */ ... }) transaction.endSession(); return } }
Is this something that we can add to the lib?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm looking for similar behavior as
@nestjs/mongoose
:Is this something that we can add to the lib?
The text was updated successfully, but these errors were encountered: