doSelectByIDs<R> method
FutureOr<List<R> >
doSelectByIDs<R>(
- TransactionOperation op,
- String entityName,
- String table,
- List<
Object> ids, { - PreFinishDBOperation<
List< ? preFinish,Map< , List<String, dynamic> >R> >
override
Implementation
@override
FutureOr<List<R>> doSelectByIDs<R>(
TransactionOperation op,
String entityName,
String table,
List<Object> ids, {
PreFinishDBOperation<List<Map<String, dynamic>>, List<R>>? preFinish,
}) => executeTransactionOperation<List<R>>(
op,
(conn) => _doSelectByIDsImpl<R>(
table,
ids,
entityName,
).resolveMapped((res) => _finishOperation(op, res, preFinish)),
);