MongoRepositoryManager(T, TKey) Class
From MongoRepository
MongoRepository documentation
| MongoRepositoryManagerT, TKey Class |
Deals with the collections of entities in MongoDb. This class tries to hide as much MongoDb-specific details
as possible but it's not 100% *yet*. It is a very thin wrapper around most methods on MongoDb's MongoCollection
objects.
Namespace: MongoRepository
Assembly: MongoRepository.Net45 (in MongoRepository.Net45.dll) Version: 1.6.11.0 (1.6.11.0)
public class MongoRepositoryManager<T, TKey> : IRepositoryManager<T, TKey> where T : Object, IEntity<TKey>
Public Class MongoRepositoryManager(Of T As {Object, IEntity(Of TKey)}, TKey) Implements IRepositoryManager(Of T, TKey)
generic<typename T, typename TKey> where T : Object, IEntity<TKey> public ref class MongoRepositoryManager : IRepositoryManager<T, TKey>
type MongoRepositoryManager<'T, 'TKey when 'T : Object and IEntity<'TKey>> = class interface IRepositoryManager<'T, 'TKey> end
Type Parameters
- T
- The type contained in the repository to manage.
- TKey
- The type used for the entity's Id.
The MongoRepositoryManagerT, TKey type exposes the following members.
| Name | Description | |
|---|---|---|
| MongoRepositoryManagerT, TKey |
Initializes a new instance of the MongoRepositoryManager class.
Uses the Default App/Web.Config connectionstrings to fetch the connectionString and Database name.
| |
| MongoRepositoryManagerT, TKey(String) |
Initializes a new instance of the MongoRepositoryManager class.
| |
| MongoRepositoryManagerT, TKey(String, String) |
Initializes a new instance of the MongoRepositoryManager class.
|
| Name | Description | |
|---|---|---|
| Exists |
Gets a value indicating whether the collection already exists.
| |
| Name |
Gets the name of the collection as Mongo uses.
|
| Name | Description | |
|---|---|---|
| Drop |
Drops the collection.
| |
| DropAllIndexes |
Drops all indexes on this repository.
| |
| DropIndex |
Drops specified index on the repository.
| |
| DropIndexes |
Drops specified indexes on the repository.
| |
| EnsureIndex(String) |
Ensures that the desired index exist and creates it if it doesn't exist.
| |
| EnsureIndex(String, Boolean, Boolean, Boolean) |
Ensures that the desired index exist and creates it if it doesn't exist.
| |
| EnsureIndexes(IEnumerableString) |
Ensures that the desired indexes exist and creates them if they don't exist.
| |
| EnsureIndexes(IMongoIndexKeys, IMongoIndexOptions) |
Ensures that the desired indexes exist and creates them if they don't exist.
| |
| EnsureIndexes(IEnumerableString, Boolean, Boolean, Boolean) |
Ensures that the desired indexes exist and creates them if they don't exist.
| |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
| GetIndexes |
Gets the indexes for this repository.
| |
| GetStats |
Gets stats for this repository.
| |
| GetTotalDataSize | Obsolete.
Gets the total size for the repository (data + indexes).
| |
| GetTotalStorageSize | Obsolete.
Gets the total storage size for the repository (data + indexes).
| |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| IndexesExists |
Tests whether indexes exist.
| |
| IndexExists |
Tests whether indexes exist.
| |
| IsCapped |
Tests whether the repository is capped.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| ReIndex |
Runs the ReIndex command on this repository.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) | |
| Validate |
Validates the integrity of the repository.
|