Public Member Functions | |
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 () |
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) |
List< T > | ToList () |
async Task< List< T > > | ToListAsync (CancellationToken cancel=default) |
T[] | ToArray () |
async Task< T[]> | ToArrayAsync (CancellationToken cancel=default) |
HashSet< T > | ToHashSet () |
Task< HashSet< T > > | ToHashSetAsync (CancellationToken cancel=default) |
HashSet< T > | ToHashSet (IEqualityComparer< T >? comparer) |
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) |
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) |
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 5 of file QuerySourceToCollections.cs.
bool Fauna.Linq.QuerySource< T >.All | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< bool > Fauna.Linq.QuerySource< T >.AllAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
bool Fauna.Linq.QuerySource< T >.Any | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
bool Fauna.Linq.QuerySource< T >.Any | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< bool > Fauna.Linq.QuerySource< T >.AnyAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< bool > Fauna.Linq.QuerySource< T >.AnyAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
int Fauna.Linq.QuerySource< T >.Count | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
int Fauna.Linq.QuerySource< T >.Count | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< int > Fauna.Linq.QuerySource< T >.CountAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< int > Fauna.Linq.QuerySource< T >.CountAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
IQuerySource< T > Fauna.Linq.QuerySource< T >.Distinct | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 20 of file QuerySourceDsl.cs.
T Fauna.Linq.QuerySource< T >.First | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.First | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.FirstAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.FirstAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
T? Fauna.Linq.QuerySource< T >.FirstOrDefault | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
T? Fauna.Linq.QuerySource< T >.FirstOrDefault | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T?> Fauna.Linq.QuerySource< T >.FirstOrDefaultAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T?> Fauna.Linq.QuerySource< T >.FirstOrDefaultAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.Last | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.Last | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.LastAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.LastAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
T? Fauna.Linq.QuerySource< T >.LastOrDefault | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
T? Fauna.Linq.QuerySource< T >.LastOrDefault | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T?> Fauna.Linq.QuerySource< T >.LastOrDefaultAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T?> Fauna.Linq.QuerySource< T >.LastOrDefaultAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
long Fauna.Linq.QuerySource< T >.LongCount | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
long Fauna.Linq.QuerySource< T >.LongCount | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< long > Fauna.Linq.QuerySource< T >.LongCountAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< long > Fauna.Linq.QuerySource< T >.LongCountAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.Max | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
R Fauna.Linq.QuerySource< T >.Max< R > | ( | Expression< Func< T, R > > | selector | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.MaxAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< R > Fauna.Linq.QuerySource< T >.MaxAsync< R > | ( | Expression< Func< T, R > > | selector, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.Min | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
R Fauna.Linq.QuerySource< T >.Min< R > | ( | Expression< Func< T, R > > | selector | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.MinAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< R > Fauna.Linq.QuerySource< T >.MinAsync< R > | ( | Expression< Func< T, R > > | selector, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
IQuerySource< T > Fauna.Linq.QuerySource< T >.Order | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 26 of file QuerySourceDsl.cs.
IQuerySource< T > Fauna.Linq.QuerySource< T >.OrderBy< K > | ( | Expression< Func< T, K > > | keySelector | ) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 32 of file QuerySourceDsl.cs.
IQuerySource< T > Fauna.Linq.QuerySource< T >.OrderByDescending< K > | ( | Expression< Func< T, K > > | keySelector | ) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 38 of file QuerySourceDsl.cs.
IQuerySource< T > Fauna.Linq.QuerySource< T >.OrderDescending | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 44 of file QuerySourceDsl.cs.
IAsyncEnumerable< Page< T > > Fauna.Linq.QuerySource< T >.PaginateAsync | ( | QueryOptions? | queryOptions = null , |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 36 of file QuerySource.cs.
IQuerySource< T > Fauna.Linq.QuerySource< T >.Reverse | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
IQuerySource< R > Fauna.Linq.QuerySource< T >.Select< R > | ( | Expression< Func< T, R > > | selector | ) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 53 of file QuerySourceDsl.cs.
T Fauna.Linq.QuerySource< T >.Single | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.Single | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.SingleAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.SingleAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.SingleOrDefault | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
T Fauna.Linq.QuerySource< T >.SingleOrDefault | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.SingleOrDefaultAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< T > Fauna.Linq.QuerySource< T >.SingleOrDefaultAsync | ( | Expression< Func< T, bool > > | predicate, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
IQuerySource< T > Fauna.Linq.QuerySource< T >.Skip | ( | int | count | ) |
Implements Fauna.Linq.IQuerySource< T >.
double Fauna.Linq.QuerySource< T >.Sum | ( | Expression< Func< T, double > > | selector | ) |
Implements Fauna.Linq.IQuerySource< T >.
int Fauna.Linq.QuerySource< T >.Sum | ( | Expression< Func< T, int > > | selector | ) |
Implements Fauna.Linq.IQuerySource< T >.
long Fauna.Linq.QuerySource< T >.Sum | ( | Expression< Func< T, long > > | selector | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< double > Fauna.Linq.QuerySource< T >.SumAsync | ( | Expression< Func< T, double > > | selector, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
Task< int > Fauna.Linq.QuerySource< T >.SumAsync | ( | Expression< Func< T, int > > | selector, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
Task< long > Fauna.Linq.QuerySource< T >.SumAsync | ( | Expression< Func< T, long > > | selector, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
IQuerySource< T > Fauna.Linq.QuerySource< T >.Take | ( | int | count | ) |
Implements Fauna.Linq.IQuerySource< T >.
T[] Fauna.Linq.QuerySource< T >.ToArray | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
async Task< T[]> Fauna.Linq.QuerySource< T >.ToArrayAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
IAsyncEnumerable< T > Fauna.Linq.QuerySource< T >.ToAsyncEnumerable | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Dictionary< K, V > Fauna.Linq.QuerySource< T >.ToDictionary< K, V > | ( | Func< T, K > | getKey, |
Func< T, V > | getValue | ||
) |
Implements Fauna.Linq.IQuerySource< T >.
K | : | notnull | |
K | : | ToDictionary | |
K | : | getKey | |
K | : | getValue | |
K | : | null |
Dictionary< K, V > Fauna.Linq.QuerySource< T >.ToDictionary< K, V > | ( | Func< T, K > | getKey, |
Func< T, V > | getValue, | ||
IEqualityComparer< K >? | comparer | ||
) |
Implements Fauna.Linq.IQuerySource< T >.
K | : | notnull | |
K | : | ToEnumerable() | |
K | : | ToDictionary | |
K | : | getKey | |
K | : | getValue | |
K | : | comparer |
Task< Dictionary< K, V > > Fauna.Linq.QuerySource< T >.ToDictionaryAsync< K, V > | ( | Func< T, K > | getKey, |
Func< T, V > | getValue, | ||
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
K | : | notnull | |
K | : | ToDictionaryAsync | |
K | : | getKey | |
K | : | getValue | |
K | : | null | |
K | : | cancel |
async Task< Dictionary< K, V > > Fauna.Linq.QuerySource< T >.ToDictionaryAsync< K, V > | ( | Func< T, K > | getKey, |
Func< T, V > | getValue, | ||
IEqualityComparer< K >? | comparer, | ||
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
K | : | notnull |
Definition at line 38 of file QuerySourceToCollections.cs.
IEnumerable< T > Fauna.Linq.QuerySource< T >.ToEnumerable | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
HashSet< T > Fauna.Linq.QuerySource< T >.ToHashSet | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
HashSet< T > Fauna.Linq.QuerySource< T >.ToHashSet | ( | IEqualityComparer< T >? | comparer | ) |
Implements Fauna.Linq.IQuerySource< T >.
Task< HashSet< T > > Fauna.Linq.QuerySource< T >.ToHashSetAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
async Task< HashSet< T > > Fauna.Linq.QuerySource< T >.ToHashSetAsync | ( | IEqualityComparer< T >? | comparer, |
CancellationToken | cancel = default |
||
) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 24 of file QuerySourceToCollections.cs.
List< T > Fauna.Linq.QuerySource< T >.ToList | ( | ) |
Implements Fauna.Linq.IQuerySource< T >.
async Task< List< T > > Fauna.Linq.QuerySource< T >.ToListAsync | ( | CancellationToken | cancel = default | ) |
Implements Fauna.Linq.IQuerySource< T >.
Definition at line 8 of file QuerySourceToCollections.cs.
IQuerySource< T > Fauna.Linq.QuerySource< T >.Where | ( | Expression< Func< T, bool > > | predicate | ) |
Implements Fauna.Linq.IQuerySource< T >.