Click or drag to resize

FilterCondition Constructor

Initializes a new instance of the FilterCondition class.

Namespace:  Aloe.SystemFrameworks.Domain.DataAccess
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public FilterCondition(
	string tableName,
	string columnName,
	ComparisonType comparison,
	Object value,
	bool includeNulls = false,
	string tableAlias = null
)

Parameters

tableName
Type: SystemString
Name of the table.
columnName
Type: SystemString
Name of the column.
comparison
Type: Aloe.SystemFrameworks.Domain.DataAccessComparisonType
The comparison.
value
Type: SystemObject
The value against which to compare.
includeNulls (Optional)
Type: SystemBoolean
if set to true include nulls in the result.
tableAlias (Optional)
Type: SystemString
The table alias.
See Also