includeList static method

QueryLogEntryIncludeList includeList({
  1. WhereExpressionBuilder<QueryLogEntryTable>? where,
  2. int? limit,
  3. int? offset,
  4. OrderByBuilder<QueryLogEntryTable>? orderBy,
  5. bool orderDescending = false,
  6. OrderByListBuilder<QueryLogEntryTable>? orderByList,
  7. QueryLogEntryInclude? include,
})

Implementation

static QueryLogEntryIncludeList includeList({
  _i1.WhereExpressionBuilder<QueryLogEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<QueryLogEntryTable>? orderBy,
  bool orderDescending = false,
  _i1.OrderByListBuilder<QueryLogEntryTable>? orderByList,
  QueryLogEntryInclude? include,
}) {
  return QueryLogEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(QueryLogEntry.t),
    orderDescending: orderDescending,
    orderByList: orderByList?.call(QueryLogEntry.t),
    include: include,
  );
}