doExistIDs<I extends Object> method
FutureOr<List<I> >
doExistIDs<I extends Object>(
- TransactionOperation op,
- String entityName,
- String table,
- 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)),
);
}