Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

TableQuery(TElement) 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<TElement><TElement><'TElement>(Of TElement)

Syntax

 
public class TableQuery<TElement>
where TElement : new(), ITableEntity
 
generic<typename TElement>
where TElement : gcnew(), ITableEntity
public ref class TableQuery 
 
type TableQuery<'TElement when 'TElement : new() and ITableEntity> = class end
 
Public Class TableQuery(Of TElement As { ITableEntity, New })

Type Parameters

TElement

The entity type of the query.

Constructors

NameDescription
System_CAPS_pubmethodTableQuery<TElement><TElement><'TElement>(Of TElement)()()()()

Initializes a new instance of the TableQuery<TElement><TElement><'TElement>(Of TElement) class.

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 query returns specified in the table query.

Methods

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

(Inherited from Object.)

System_CAPS_protmethodFinalize()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()()()()

(Inherited from Object.)

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.

Represents a query against a Windows Azure table.

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