leftJoinQuery<O extends DbModel> method
Future
leftJoinQuery<O extends DbModel>(
- List<
QueryPart> queries(- T a,
- O? b
- ConditionQuery joinCondition(
- T a,
- O b
- DbTableProvider<
O> otherJoinProvider, - ConditionQuery where(
- T e
- int offset,
- int limit,
- List<
FieldWithValue> groupBy(- T e
- List<
FieldOrder> orderBy(- T e
Apply left join.
Implementation
Future leftJoinQuery<O extends DbModel>(
List<QueryPart> Function(T a, O? b) queries,
ConditionQuery Function(T a, O b) joinCondition,
DbTableProvider<O> otherJoinProvider,
ConditionQuery Function(T e) where,
int offset,
int limit,
List<FieldWithValue> Function(T e) groupBy,
List<FieldOrder> Function(T e) orderBy) async {
return _queryJoin(
queries: queries,
joinCondition: joinCondition,
joinType: 'LEFT',
otherJoinTable: otherJoinProvider,
where: where,
offset: offset,
limit: limit,
groupBy: groupBy,
orderBy: orderBy);
}