AdapterBaseParseFilterExpression Method

Parses a standard FILTER styles expression into its constituent parts.

Definition

Namespace: Gemstone.Timeseries.Adapters
Assembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.178 -- Release Build+52bde36e42c7b2f52d1e2cc6bb29e593f446f07c
public static bool ParseFilterExpression(
	string filterExpression,
	out string tableName,
	out string whereExpression,
	out string sortField,
	out int takeCount
)

Parameters

filterExpression  String
Filter expression to parse.
tableName  String
Name of table in filter expression.
whereExpression  String
Where expression in filter expression.
sortField  String
Sort field, if any, in filter expression.
takeCount  Int32
Total row restriction, if any, in filter expression.

Return Value

Boolean
true if filter expression was successfully parsed; otherwise false.

Remarks

This method can be safely called from multiple threads.

See Also