Class TableQuery
- Namespace
- Microsoft.Azure.Cosmos.Table
- Assembly
- Microsoft.Azure.Cosmos.Table.dll
- Inheritance
-
TableQuery
- Inherited Members
-
Constructors
TableQuery()
Properties
FilterString
public string FilterString { get; set; }
Property Value
- string
SelectColumns
public IList<string> SelectColumns { get; set; }
Property Value
- IList<string>
TakeCount
public int? TakeCount { get; set; }
Property Value
- int?
Methods
CombineFilters(string, string, string)
public static string CombineFilters(string filterA, string operatorString, string filterB)
Parameters
filterA
string
operatorString
string
filterB
string
Returns
- string
Copy()
Returns
- TableQuery
GenerateFilterCondition(string, string, string)
public static string GenerateFilterCondition(string propertyName, string operation, string givenValue)
Parameters
propertyName
string
operation
string
givenValue
string
Returns
- string
GenerateFilterConditionForBinary(string, string, byte[])
public static string GenerateFilterConditionForBinary(string propertyName, string operation, byte[] givenValue)
Parameters
propertyName
string
operation
string
givenValue
byte[]
Returns
- string
GenerateFilterConditionForBool(string, string, bool)
public static string GenerateFilterConditionForBool(string propertyName, string operation, bool givenValue)
Parameters
propertyName
string
operation
string
givenValue
bool
Returns
- string
GenerateFilterConditionForDate(string, string, DateTimeOffset)
public static string GenerateFilterConditionForDate(string propertyName, string operation, DateTimeOffset givenValue)
Parameters
propertyName
string
operation
string
givenValue
DateTimeOffset
Returns
- string
GenerateFilterConditionForDouble(string, string, double)
public static string GenerateFilterConditionForDouble(string propertyName, string operation, double givenValue)
Parameters
propertyName
string
operation
string
givenValue
double
Returns
- string
GenerateFilterConditionForGuid(string, string, Guid)
public static string GenerateFilterConditionForGuid(string propertyName, string operation, Guid givenValue)
Parameters
propertyName
string
operation
string
givenValue
Guid
Returns
- string
GenerateFilterConditionForInt(string, string, int)
public static string GenerateFilterConditionForInt(string propertyName, string operation, int givenValue)
Parameters
propertyName
string
operation
string
givenValue
int
Returns
- string
GenerateFilterConditionForLong(string, string, long)
public static string GenerateFilterConditionForLong(string propertyName, string operation, long givenValue)
Parameters
propertyName
string
operation
string
givenValue
long
Returns
- string
OrderBy(string)
public TableQuery OrderBy(string propertyName)
Parameters
propertyName
string
Returns
- TableQuery
OrderByDesc(string)
public TableQuery OrderByDesc(string propertyName)
Parameters
propertyName
string
Returns
- TableQuery
Project<T>(T, params string[])
public static T Project<T>(T entity, params string[] columns)
Parameters
entity
T
columns
string[]
Returns
- T
Type Parameters
T
Select(IList<string>)
public TableQuery Select(IList<string> columns)
Parameters
columns
IList<string>
Returns
- TableQuery
Take(int?)
public TableQuery Take(int? take)
Parameters
take
int?
Returns
- TableQuery
Where(string)
public TableQuery Where(string filter)
Parameters
filter
string
Returns
- TableQuery