DomainManager<TData>.Lookup(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Builds an IQueryable<T> to be executed against a store supporting IQueryable<T> for looking up a single item.
public abstract System.Web.Http.SingleResult<TData> Lookup (string id);
abstract member Lookup : string -> System.Web.Http.SingleResult<'Data (requires 'Data : null and 'Data :> Microsoft.WindowsAzure.Mobile.Service.Tables.ITableData)>
Public MustOverride Function Lookup (id As String) As SingleResult(Of TData)
Parameters
- id
- 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.
Returns
A System.Web.Http.SingleResult`1 containing the IQueryable<T> which has not yet been executed.
Implements
Remarks
See also Query which is the companion method for creating an IQueryable<T> representing multiple items.
Applies to
Azure SDK for .NET