TableQuery.CombineFilters Method

Windows Runtime Azure Storage Client Library

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

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

Usage

Visual Basic
Dim filterA As String
Dim operatorString As String
Dim filterB As String
Dim returnValue As String

returnValue = TableQuery.CombineFilters(filterA, operatorString, filterB)

Syntax

Visual Basic
Public Shared Function CombineFilters ( _
	filterA As String, _
	operatorString As String, _
	filterB As String _
) As String
C#
public static string CombineFilters (
	string filterA,
	string operatorString,
	string filterB
)
C++
public:
static String^ CombineFilters (
	String^ filterA, 
	String^ operatorString, 
	String^ filterB
)
J#
public static String CombineFilters (
	String filterA, 
	String operatorString, 
	String filterB
)
JScript
public static function CombineFilters (
	filterA : String, 
	operatorString : String, 
	filterB : String
) : String

Parameters

filterA

A string containing the first formatted filter condition.

operatorString

A string containing the operator to use (AND, OR).

filterB

A string containing the second formatted filter condition.

Return Value

A string containing the combined filter expression.

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.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also