|
Task< QuerySuccess< T > > | QueryAsync< T > (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.
|
|
Task< QuerySuccess< object?> > | QueryAsync (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously executes a specified FQL query against the Fauna database.
|
|
Task< QuerySuccess< T > > | QueryAsync< T > (Query query, ISerializer< T > serializer, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.
|
|
Task< QuerySuccess< object?> > | QueryAsync (Query query, ISerializer serializer, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously executes a specified FQL query against the Fauna database and returns the typed result.
|
|
IAsyncEnumerable< Page< T > > | PaginateAsync< T > (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
|
|
IAsyncEnumerable< Page< T > > | PaginateAsync< T > (Page< T > page, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
|
|
IAsyncEnumerable< Page< object?> > | PaginateAsync (Query query, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
|
|
IAsyncEnumerable< Page< object?> > | PaginateAsync (Page< object?> page, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
|
|
IAsyncEnumerable< Page< T > > | PaginateAsync< T > (Query query, ISerializer< T > elemSerializer, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
|
|
IAsyncEnumerable< Page< T > > | PaginateAsync< T > (Page< T > page, ISerializer< T > elemSerializer, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
|
|
IAsyncEnumerable< Page< object?> > | PaginateAsync (Query query, ISerializer elemSerializer, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor.
|
|
IAsyncEnumerable< Page< object?> > | PaginateAsync (Page< object?> page, ISerializer elemSerializer, QueryOptions? queryOptions=null, CancellationToken cancel=default) |
| Asynchronously iterates over pages of a Fauna query result, automatically fetching subsequent pages using the 'after' cursor. The provided page is the first page yielded.
|
|
Definition at line 9 of file DataContext.cs.