Skip to content
New issue

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

InjectConnection not supported? #499

Open
bneigher opened this issue Aug 26, 2023 · 0 comments
Open

InjectConnection not supported? #499

bneigher opened this issue Aug 26, 2023 · 0 comments

Comments

@bneigher
Copy link

I'm looking for similar behavior as @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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant