Skip to main content
Version: 6.4

Transactional

Callable

  • Transactional(options?: TransactionalOptions<T>): MethodDecorator

  • This decorator wraps the method with em.transactional(), so you can provide TransactionOptions just like with em.transactional(). The difference is that you can specify the context in which the transaction begins by providing context option, and if omitted, the transaction will begin in the current context implicitly. It works on async functions and can be nested with em.transactional().


    Parameters

    • options: TransactionalOptions<T> = {}

    Returns MethodDecorator