Share via


IDomainManager<TData>.Lookup Method (String)

 

Builds an IQueryable<T> to be executed against a store supporting IQueryable<T> for looking up a single item.

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

Syntax

SingleResult<TData> Lookup(
    string id
)
SingleResult<TData>^ Lookup(
    String^ id
)
abstract Lookup : 
        id:string -> SingleResult<'TData>
Function Lookup (
    id As String
) As SingleResult(Of TData)

Parameters

  • id
    Type: System.String

    The id representing the item. The id is provided as part of the ITableData and is visible to the client. However, depending on the backend store and the domain model, the particular implementation may map the id to some other form of unique identifier.

Return Value

Type: System.Web.Http.SingleResult<TData>

A SingleResult<T> containing the IQueryable<T> which has not yet been executed.

Remarks

See also M:Query which is the companion method for creating an IQueryable<T> representing multiple items.

See Also

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

Return to top