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: 8.0.5.0 (8.0.5.20210818)
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 sub query to apply the filter on - comparisonOperator
- Type: WorkflowGen.My.DataComparisonOperators
A comparison operator to apply
See Also