MongoDomainManager<TData> Class
Provides an IDomainManager<TData> implementation targeting Mongo as the backend store.
Namespace: Microsoft.WindowsAzure.Mobile.Service
Assembly: Microsoft.WindowsAzure.Mobile.Service.Mongo (in Microsoft.WindowsAzure.Mobile.Service.Mongo.dll)
Inheritance Hierarchy
System.Object
Microsoft.WindowsAzure.Mobile.Service.MongoDomainManager<TData>
Syntax
public class MongoDomainManager<TData> : IDomainManager<TData>
where TData : class, ITableData
generic<typename TData>
where TData : ref class, ITableData
public ref class MongoDomainManager : IDomainManager<TData>
type MongoDomainManager<'TData when 'TData : not struct and ITableData> =
class
interface IDomainManager<'TData>
end
Public Class MongoDomainManager(Of TData As { Class, ITableData })
Implements IDomainManager(Of TData)
Type Parameters
- TData
The data object (DTO) type.
Constructors
Name | Description | |
---|---|---|
MongoDomainManager<TData>(String, String, String, HttpRequestMessage, ApiServices) |
Properties
Name | Description | |
---|---|---|
CollectionName | ||
Context | ||
DatabaseName | ||
Request | ||
Services |
Methods
Name | Description | |
---|---|---|
DeleteAsync(String) | ||
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetCurrentItem(String) | ||
GetHashCode() | (Inherited from Object.) |
|
GetMongoContext(String) | ||
GetType() | (Inherited from Object.) |
|
InsertAsync(TData) | ||
Lookup(String) | ||
MemberwiseClone() | (Inherited from Object.) |
|
Query() | ||
ReplaceAsync(String, TData) | ||
ToString() | (Inherited from Object.) |
|
UpdateAsync(String, Delta<TData>) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
IDomainManager<TData>.LookupAsync(String) | ||
IDomainManager<TData>.QueryAsync(ODataQueryOptions) |
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.WindowsAzure.Mobile.Service Namespace
Return to top