Share via


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
System_CAPS_pubmethod MongoDomainManager<TData>(String, String, String, HttpRequestMessage, ApiServices)

Properties

Name Description
System_CAPS_protproperty CollectionName

System_CAPS_protproperty Context

System_CAPS_protproperty DatabaseName

System_CAPS_pubproperty Request

System_CAPS_pubproperty Services

Methods

Name Description
System_CAPS_pubmethod DeleteAsync(String)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_protmethod GetCurrentItem(String)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_protmethod GetMongoContext(String)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod InsertAsync(TData)

System_CAPS_pubmethod Lookup(String)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod Query()

System_CAPS_pubmethod ReplaceAsync(String, TData)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod UpdateAsync(String, Delta<TData>)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod IDomainManager<TData>.LookupAsync(String)

System_CAPS_pubinterfaceSystem_CAPS_privmethod 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