doExistIDs<I extends Object> method

  1. @override
FutureOr<List<I>> doExistIDs<I extends Object>(
  1. TransactionOperation op,
  2. String entityName,
  3. String table,
  4. List<I> ids,
)
override

Implementation

@override
FutureOr<List<I>> doExistIDs<I extends Object>(
  TransactionOperation op,
  String entityName,
  String table,
  List<I> ids,
) {
  return executeTransactionOperation(
    op,
    (conn) => _doExistIDsImpl(
      op,
      table,
      ids,
    ).resolveMapped((res) => _finishOperation(op, res, null)),
  );
}