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)

SingleResult<TData> Lookup(
	string id
)

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.

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

Return to top
Show: