Click or drag to resize

PFQueryCreateQueryFilter Method (String, PFQueryFilterOperator, Object, String, Boolean)

Creates a new instance of the PFQuery class, with a default filter and a default order.

Namespace:  Packflow.Core
Assembly:  MicaSystems.Packflow.Core (in MicaSystems.Packflow.Core.dll) Version: 1.0.0.0 (3.2.0.306)
Syntax
C#
public static PFQuery CreateQueryFilter(
	string fieldName,
	PFQueryFilterOperator op,
	Object value,
	string orderBy,
	bool ascending
)

Parameters

fieldName
Type: SystemString
Name of the target field/column.
op
Type: Packflow.CorePFQueryFilterOperator
Filter's operator.
value
Type: SystemObject
The value used for comparisons.
orderBy
Type: SystemString
Initial order.
ascending
Type: SystemBoolean
Initial order type.

Return Value

Type: PFQuery
The new query.
See Also