Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

TableQuery Class (Microsoft.WindowsAzure.Storage.Table)

Represents a query against a specified table.

Namespace:   Microsoft.WindowsAzure.Storage.Table
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Inheritance Hierarchy

System.::..Object
  Microsoft.WindowsAzure.Storage.Table.::..TableQuery

Syntax

 
public class TableQuery
 
public ref class TableQuery 
 
type TableQuery = class end
 
Public Class TableQuery

Constructors

NameDescription
System_CAPS_pubmethodTableQuery()()()()

Represents a query against a specified table.

Properties

NameDescription
System_CAPS_pubpropertyFilterStringFilterStringFilterStringFilterString

Gets or sets the filter expression to use in the table query.

System_CAPS_pubpropertySelectColumnsSelectColumnsSelectColumnsSelectColumns

Gets or sets the property names of the table entity properties to return when the table query is executed.

System_CAPS_pubpropertyTakeCountTakeCountTakeCountTakeCount

Gets or sets the number of entities the table query will return.

Methods

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticCombineFilters(String, String, String)(String^, String^, String^)(String, String, String)(String, String, String)

Creates a filter condition using the specified logical operator on two filter conditions.

System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()()()()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterCondition(String, String, String)(String^, String^, String^)(String, String, String)(String, String, String)

Generates a property filter condition string for the string value.

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterConditionForBinary(String, String, Byte[])(String^, String^, array<Byte>^)(String, String, Byte[])(String, String, Byte())

Generates a property filter condition string for the binary value.

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterConditionForBool(String, String, Boolean)(String^, String^, Boolean)(String, String, Boolean)(String, String, Boolean)

Generates a property filter condition string for the boolean value.

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterConditionForDate(String, String, DateTimeOffset)(String^, String^, DateTimeOffset)(String, String, DateTimeOffset)(String, String, DateTimeOffset)

Generates a property filter condition string for the DateTimeOffset value.

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterConditionForDouble(String, String, Double)(String^, String^, Double)(String, String, Double)(String, String, Double)

Generates a property filter condition string for the Double value.

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterConditionForGuid(String, String, Guid)(String^, String^, Guid)(String, String, Guid)(String, String, Guid)

Generates a property filter condition string for the Guid value.

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterConditionForInt(String, String, Int32)(String^, String^, Int32)(String, String, Int32)(String, String, Int32)

Generates a property filter condition string for an Int32 value.

System_CAPS_pubmethodSystem_CAPS_staticGenerateFilterConditionForLong(String, String, Int64)(String^, String^, Int64)(String, String, Int64)(String, String, Int64)

Generates a property filter condition string for an Int64 value.

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()()()()

(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticProject<T><T><'T>(Of T)(T, String[])(T, array<String^>^)('T, String[])(T, String())

Specifies the names of the entity properties to return when the query is executed against the table.

System_CAPS_pubmethodSelect(IList<String>)(IList<String^>^)(IList<String>)(IList(Of String))

Defines the property names of the table entity properties to return when the table query is executed.

System_CAPS_pubmethodTake(Nullable<Int32>)(Nullable<Int32>)(Nullable<Int32>)(Nullable(Of Int32))

Defines the upper bound for the number of entities the query returns.

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

System_CAPS_pubmethodWhere(String)(String^)(String)(String)

Defines a filter expression for the table query. Only entities that satisfy the specified filter expression will be returned by the query.

Remarks

The TableQuery class aggregates and encodes the query parameters to pass with the request when the query is executed. To execute the query, call the executeQuery or executeQuerySegmented method of the CloudTableClient class.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top