GetOneAsync(string, CancellationToken) |
Retrieves a single entity from the data store by its id.
|
GetManyAsync(IEnumerable<string>, CancellationToken) |
Retrieves multiple entities from the data store by their ids.
|
GetAllAsync(CancellationToken) |
Retrieves all entities of the requested type from the data store.
|
FindOneAsync(Expression<Func<T, bool>>, CancellationToken) |
Queries the data store by filter expression and returns the first result.
|
FindManyAsync(Expression<Func<T, bool>>, CancellationToken) |
Queries the data store by filter expression and returns the (optionally paged) results.
|
CountAsync(Expression<Func<T, bool>>, CancellationToken) |
|
QueryAsync(DocumentQuery<T>, CancellationToken) |
|
UpsertAsync(IEnumerable<T>) |
|
DeleteAsync(IEnumerable<string>) |
|