WATableFetchRequest Class Reference
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
-
tableName
The table name.
property -
partitionKey
The partition key.
property -
rowKey
The row key.
property -
filter
The filter to use in the table fetch request.
property -
topRows
The number of rows to limit with the tech.
property -
resultContinuation
The continuation to use in the fetch request.
property -
+ fetchRequestForTable:
Create a new WATableFetchRequest with a table name.
-
+ fetchRequestForTable:predicate:error:
Create a new WATableFetchRequest with a table name, predicate, and error.
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
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