Share via


IDomainManager<TData>.InsertAsync Method (TData)

 

Inserts an item to the backend store.

Namespace:   Microsoft.WindowsAzure.Mobile.Service.Tables
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)

Syntax

Task<TData> InsertAsync(
    TData data
)
Task<TData>^ InsertAsync(
    TData data
)
abstract InsertAsync : 
        data:'TData -> Task<'TData>
Function InsertAsync (
    data As TData
) As Task(Of TData)

Parameters

  • data
    Type: TData

    The data to be inserted

Return Value

Type: System.Threading.Tasks.Task<TData>

The inserted item.

See Also

IDomainManager<TData> Interface
Microsoft.WindowsAzure.Mobile.Service.Tables Namespace

Return to top