Inherits from NSObject
Declared in WATableFetchRequest.h

Overview

A class that represents a Windows Azure Table Storage fetch request.

The request is used with the WACloudStorageClient when working with tables.

Tasks

Properties

filter

The filter to use in the table fetch request.

@property (copy) NSString *filter

Declared In

WATableFetchRequest.h

partitionKey

The partition key.

@property (copy) NSString *partitionKey

Declared In

WATableFetchRequest.h

resultContinuation

The continuation to use in the fetch request.

@property (nonatomic, retain) WAResultContinuation *resultContinuation

Declared In

WATableFetchRequest.h

rowKey

The row key.

@property (copy) NSString *rowKey

Declared In

WATableFetchRequest.h

tableName

The table name.

@property (readonly) NSString *tableName

Declared In

WATableFetchRequest.h

topRows

The number of rows to limit with the tech.

@property (assign) NSInteger topRows

Declared In

WATableFetchRequest.h

Class Methods

fetchRequestForTable:

Create a new WATableFetchRequest with a table name.

+ (WATableFetchRequest *)fetchRequestForTable:(NSString *)tableName

Parameters

tableName

The table name for the fetch request.

Return Value

The newly initialized WATableFetchRequest object.

Declared In

WATableFetchRequest.h

fetchRequestForTable:predicate:error:

Create a new WATableFetchRequest with a table name, predicate, and error.

+ (WATableFetchRequest *)fetchRequestForTable:(NSString *)tableName predicate:(NSPredicate *)predicate error:(NSError **)error

Parameters

tableName

The table name for the fetch request.

predicate

The predicate for the fetch request.

error

An NSError object that will be populated if the predicate is not valid.

Return Value

The newly initialized WATableFetchRequest object.

Declared In

WATableFetchRequest.h