MongoRepository documentation
IRepositoryT, TKey Methods |
The IRepositoryT, TKey generic type exposes the following members.
Methods
Name | Description | |
---|---|---|
Add(IEnumerableT) |
Adds the new entities in the repository.
|
|
Add(T) |
Adds the new entity in the repository.
|
|
Count |
Counts the total entities in the repository.
|
|
Delete(ExpressionFuncT, Boolean) |
Deletes the entities matching the predicate.
|
|
Delete(T) |
Deletes the given entity.
|
|
Delete(TKey) |
Deletes an entity from the repository by its id.
|
|
DeleteAll |
Deletes all entities in the repository.
|
|
Exists |
Checks if the entity exists for given predicate.
|
|
GetById |
Returns the T by its given id.
|
|
GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerableT.) |
|
RequestDone |
Lets the server know that this thread is done with a series of related operations.
|
|
RequestStart |
Lets the server know that this thread is about to begin a series of related operations that must all occur
on the same connection. The return value of this method implements IDisposable and can be placed in a using
statement (in which case RequestDone will be called automatically when leaving the using statement).
|
|
Update(IEnumerableT) |
Upserts the entities.
|
|
Update(T) |
Upserts an entity.
|
See Also