|
| | Collection () |
| |
| 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 > | OrderByDescending< K > (Expression< Func< T, K > > keySelector) |
| |
| IQuerySource< T > | OrderDescending () |
| |
| 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 () |
| |
| bool | Any (Expression< Func< T, bool > > predicate) |
| |
| Task< bool > | AnyAsync (CancellationToken cancel=default) |
| |
| Task< bool > | AnyAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| int | Count () |
| |
| int | Count (Expression< Func< T, bool > > predicate) |
| |
| Task< int > | CountAsync (CancellationToken cancel=default) |
| |
| Task< int > | CountAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| T | First () |
| |
| T | First (Expression< Func< T, bool > > predicate) |
| |
| Task< T > | FirstAsync (CancellationToken cancel=default) |
| |
| Task< T > | FirstAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| T? | FirstOrDefault () |
| |
| T? | FirstOrDefault (Expression< Func< T, bool > > predicate) |
| |
| Task< T?> | FirstOrDefaultAsync (CancellationToken cancel=default) |
| |
| Task< T?> | FirstOrDefaultAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| T | Last () |
| |
| T | Last (Expression< Func< T, bool > > predicate) |
| |
| Task< T > | LastAsync (CancellationToken cancel=default) |
| |
| Task< T > | LastAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| T? | LastOrDefault () |
| |
| T? | LastOrDefault (Expression< Func< T, bool > > predicate) |
| |
| Task< T?> | LastOrDefaultAsync (CancellationToken cancel=default) |
| |
| Task< T?> | LastOrDefaultAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| long | LongCount () |
| |
| long | LongCount (Expression< Func< T, bool > > predicate) |
| |
| Task< long > | LongCountAsync (CancellationToken cancel=default) |
| |
| 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) |
| |
| double | Average (Expression< Func< T, double > > selector) |
| |
| Task< double > | AverageAsync (Expression< Func< T, double > > selector, CancellationToken cancel=default) |
| |
| T | Single () |
| |
| T | Single (Expression< Func< T, bool > > predicate) |
| |
| Task< T > | SingleAsync (CancellationToken cancel=default) |
| |
| Task< T > | SingleAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| T | SingleOrDefault () |
| |
| T | SingleOrDefault (Expression< Func< T, bool > > predicate) |
| |
| Task< T > | SingleOrDefaultAsync (CancellationToken cancel=default) |
| |
| Task< T > | SingleOrDefaultAsync (Expression< Func< T, bool > > predicate, CancellationToken cancel=default) |
| |
| int | Sum (Expression< Func< T, int > > selector) |
| |
| long | Sum (Expression< Func< T, long > > selector) |
| |
| double | Sum (Expression< Func< T, double > > selector) |
| |
| Task< int > | SumAsync (Expression< Func< T, int > > selector, CancellationToken cancel=default) |
| |
| Task< long > | SumAsync (Expression< Func< T, long > > selector, CancellationToken cancel=default) |
| |
| Task< double > | SumAsync (Expression< Func< T, double > > selector, CancellationToken cancel=default) |
| |
| List< T > | ToList () |
| |
| async Task< List< T > > | ToListAsync (CancellationToken cancel=default) |
| |
| T[] | ToArray () |
| |
| async Task< T[]> | ToArrayAsync (CancellationToken cancel=default) |
| |
| HashSet< T > | ToHashSet () |
| |
| HashSet< T > | ToHashSet (IEqualityComparer< T >? comparer) |
| |
| Task< HashSet< T > > | ToHashSetAsync (CancellationToken cancel=default) |
| |
| async Task< HashSet< T > > | ToHashSetAsync (IEqualityComparer< T >? comparer, CancellationToken cancel=default) |
| |
| Dictionary< K, V > | ToDictionary< K, V > (Func< T, K > getKey, Func< T, V > getValue) |
| |
| 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, CancellationToken cancel=default) |
| |
| async Task< Dictionary< K, V > > | ToDictionaryAsync< K, V > (Func< T, K > getKey, Func< T, V > getValue, IEqualityComparer< K >? comparer, CancellationToken cancel=default) |
| |
Definition at line 68 of file DataContext.cs.