MongoRepository(T, TKey) Methods

MongoRepository

MongoRepositoryT, TKey Methods

The MongoRepositoryT, TKey generic type exposes the following members.

Methods
  Name Description
Public method Add(IEnumerableT)
Adds the new entities in the repository.
Public method Add(T)
Adds the new entity in the repository.
Public method Count
Counts the total entities in the repository.
Public method Delete(ObjectId)
Deletes an entity from the repository by its ObjectId.
Public method Delete(ExpressionFuncT, Boolean)
Deletes the entities matching the predicate.
Public method Delete(T)
Deletes the given entity.
Public method Delete(TKey)
Deletes an entity from the repository by its id.
Public method DeleteAll
Deletes all entities in the repository.
Public method Equals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public method Exists
Checks if the entity exists for given predicate.
Protected method Finalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public method GetById(ObjectId)
Returns the T by its given id.
Public method GetById(TKey)
Returns the T by its given id.
Public method GetEnumerator
Returns an enumerator that iterates through a collection.
Public method GetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public method GetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected method MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public method RequestDone
Lets the server know that this thread is done with a series of related operations.
Public method 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).
Public method ToString
Returns a string that represents the current object.
(Inherited from Object.)
Public method Update(IEnumerableT)
Upserts the entities.
Public method Update(T)
Upserts an entity.
Top
See Also