Click or drag to resize

QuantityDataAttributeTObjectFilterBy Method

Creates and returns filter condition for the data attribute

Namespace:  Aloe.EnterpriseOne.Model.Core
Assembly:  Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntax
public override FilterCondition FilterBy(
	ComparisonType comparisonType,
	Object value,
	bool includeNulls = false
)

Parameters

comparisonType
Type: Aloe.SystemFrameworks.Domain.DataAccessComparisonType
Comparison operator to apply
value
Type: SystemObject
The value against which to compare
includeNulls (Optional)
Type: SystemBoolean
Shall NULL attribute values be included in the result

Return Value

Type: FilterCondition
SearchArgument, which contains the filter condition

Implements

IDataAttributeFilterBy(ComparisonType, Object, Boolean)
Exceptions
ExceptionCondition
NotImplementedException
Remarks
The FilterBy method is the primary means for creating filters for the objects. This method returns search argument, which filters the object, comparing the attribute value with the specified value, using the specified comparisonType. When includeNulls == true, the results also contain the objects, where the attribute value is null.
See Also