selectQuery3Cols<TType1, TType2, TType3> method
Future<SqlResponse<List<Tuple3<TType1, TType2, TType3> > > >
selectQuery3Cols<TType1, TType2, TType3>(})
Implementation
Future<SqlResponse<List<Tuple3<TType1, TType2, TType3>>>> selectQuery3Cols<TType1, TType2, TType3>(
Column<TType1, TModel> Function(TDef e) col1,
Column<TType2, TModel> Function(TDef e) col2,
Column<TType3, TModel> Function(TDef e) col3, {
Where Function(TDef e)? where,
OrderBy Function(TDef e)? orderBy,
}) async {
var result = _selectQuery((x) => runQueryToReturnType(x, getRowCustom3<TType1, TType2, TType3>), where, orderBy, col1, col2);
return result;
}