includeList static method
QueryLogEntryIncludeList
includeList({
- WhereExpressionBuilder<
QueryLogEntryTable> ? where, - int? limit,
- int? offset,
- OrderByBuilder<
QueryLogEntryTable> ? orderBy, - bool orderDescending = false,
- OrderByListBuilder<
QueryLogEntryTable> ? orderByList, - 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,
);
}