| 
| IAsyncEnumerable< Page< T > >  | PaginateAsync (QueryOptions? queryOptions=null, CancellationToken cancel=default) | 
|   | 
| IAsyncEnumerable< T >  | ToAsyncEnumerable (CancellationToken cancel=default) | 
|   | 
| IEnumerable< T >  | ToEnumerable () | 
|   | 
| IQuerySource< T >  | Distinct () | 
|   | 
| IQuerySource< T >  | Order () | 
|   | 
| IQuerySource< T >  | OrderBy< K > (Expression< Func< T, K > > keySelector) | 
|   | 
| IQuerySource< T >  | OrderDescending () | 
|   | 
| IQuerySource< T >  | OrderByDescending< K > (Expression< Func< T, K > > keySelector) | 
|   | 
| IQuerySource< T >  | Reverse () | 
|   | 
| IQuerySource< R >  | Select< R > (Expression< Func< T, R > > selector) | 
|   | 
| IQuerySource< T >  | Skip (int count) | 
|   | 
| IQuerySource< T >  | Take (int count) | 
|   | 
| IQuerySource< T >  | Where (Expression< Func< T, bool > > predicate) | 
|   | 
| bool  | All (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< bool >  | AllAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| bool  | Any () | 
|   | 
| Task< bool >  | AnyAsync (CancellationToken cancel=default) | 
|   | 
| bool  | Any (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< bool >  | AnyAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| int  | Count () | 
|   | 
| Task< int >  | CountAsync (CancellationToken cancel=default) | 
|   | 
| int  | Count (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< int >  | CountAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| T  | First () | 
|   | 
| Task< T >  | FirstAsync (CancellationToken cancel=default) | 
|   | 
| T  | First (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< T >  | FirstAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| T?  | FirstOrDefault () | 
|   | 
| Task< T?>  | FirstOrDefaultAsync (CancellationToken cancel=default) | 
|   | 
| T?  | FirstOrDefault (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< T?>  | FirstOrDefaultAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| T  | Last () | 
|   | 
| Task< T >  | LastAsync (CancellationToken cancel=default) | 
|   | 
| T  | Last (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< T >  | LastAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| T?  | LastOrDefault () | 
|   | 
| Task< T?>  | LastOrDefaultAsync (CancellationToken cancel=default) | 
|   | 
| T?  | LastOrDefault (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< T?>  | LastOrDefaultAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| long  | LongCount () | 
|   | 
| Task< long >  | LongCountAsync (CancellationToken cancel=default) | 
|   | 
| long  | LongCount (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< long >  | LongCountAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| T  | Max () | 
|   | 
| Task< T >  | MaxAsync (CancellationToken cancel=default) | 
|   | 
| R  | Max< R > (Expression< Func< T, R > > selector) | 
|   | 
| Task< R >  | MaxAsync< R > (Expression< Func< T, R > > selector, CancellationToken cancel=default) | 
|   | 
| T  | Min () | 
|   | 
| Task< T >  | MinAsync (CancellationToken cancel=default) | 
|   | 
| R  | Min< R > (Expression< Func< T, R > > selector) | 
|   | 
| Task< R >  | MinAsync< R > (Expression< Func< T, R > > selector, CancellationToken cancel=default) | 
|   | 
| T  | Single () | 
|   | 
| Task< T >  | SingleAsync (CancellationToken cancel=default) | 
|   | 
| T  | Single (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< T >  | SingleAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| T  | SingleOrDefault () | 
|   | 
| Task< T >  | SingleOrDefaultAsync (CancellationToken cancel=default) | 
|   | 
| T  | SingleOrDefault (Expression< Func< T, bool > > predicate) | 
|   | 
| Task< T >  | SingleOrDefaultAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) | 
|   | 
| int  | Sum (Expression< Func< T, int > > selector) | 
|   | 
| Task< int >  | SumAsync (Expression< Func< T, int > > selector, CancellationToken cancel=default) | 
|   | 
| long  | Sum (Expression< Func< T, long > > selector) | 
|   | 
| Task< long >  | SumAsync (Expression< Func< T, long > > selector, CancellationToken cancel=default) | 
|   | 
| double  | Sum (Expression< Func< T, double > > selector) | 
|   | 
| Task< double >  | SumAsync (Expression< Func< T, double > > selector, CancellationToken cancel=default) | 
|   | 
| double  | Average (Expression< Func< T, double > > selector) | 
|   | 
| Task< double >  | AverageAsync (Expression< Func< T, double > > selector, CancellationToken cancel=default) | 
|   | 
| List< T >  | ToList () | 
|   | 
| Task< List< T > >  | ToListAsync (CancellationToken cancel=default) | 
|   | 
| T[]  | ToArray () | 
|   | 
| Task< T[]>  | ToArrayAsync (CancellationToken cancel=default) | 
|   | 
| HashSet< T >  | ToHashSet () | 
|   | 
| Task< HashSet< T > >  | ToHashSetAsync (CancellationToken cancel=default) | 
|   | 
| HashSet< T >  | ToHashSet (IEqualityComparer< T >? comparer) | 
|   | 
| Task< HashSet< T > >  | ToHashSetAsync (IEqualityComparer< T >? comparer, CancellationToken cancel=default) | 
|   | 
| Dictionary< K, V >  | ToDictionary< K, V > (Func< T, K > getKey, Func< T, V > getValue) | 
|   | 
| Task< Dictionary< K, V > >  | ToDictionaryAsync< K, V > (Func< T, K > getKey, Func< T, V > getValue, CancellationToken cancel=default) | 
|   | 
| Dictionary< K, V >  | ToDictionary< K, V > (Func< T, K > getKey, Func< T, V > getValue, IEqualityComparer< K >? comparer) | 
|   | 
| Task< Dictionary< K, V > >  | ToDictionaryAsync< K, V > (Func< T, K > getKey, Func< T, V > getValue, IEqualityComparer< K >? comparer, CancellationToken cancel=default) | 
|   | 
Definition at line 148 of file DataContext.cs.