FilterCriteria Constructor (String, Object, String, ComparisonOperators) |
Initializes a new instance of the FilterCriteria class and specify the matched SQL field
Namespace:
WorkflowGen.My.Data
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax public FilterCriteria(
string name,
Object value,
string sqlField,
ComparisonOperators comparisonOperator
)
Public Sub New (
name As String,
value As Object,
sqlField As String,
comparisonOperator As ComparisonOperators
)
Parameters
- name
- Type: SystemString
A identifier for the filter criteria - value
- Type: SystemObject
The value of the filter criteria - sqlField
- Type: SystemString
The SQL field name or subquery to apply the filter on - comparisonOperator
- Type: WorkflowGen.My.DataComparisonOperators
A comparison operator to apply
See Also