Click or drag to resize

FilterCondition Class

Specifies filtering for a single column
Inheritance Hierarchy
SystemObject
  Aloe.SystemFrameworks.Domain.DataAccessFilterCondition

Namespace:  Aloe.SystemFrameworks.Domain.DataAccess
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public class FilterCondition

The FilterCondition type exposes the following members.

Constructors
  NameDescription
Public methodFilterCondition
Initializes a new instance of the FilterCondition class.
Top
Properties
  NameDescription
Public propertyColumnName
The name of the column which will be filtered.
Public propertyComparison
The comparison type.
Public propertyIncludeNulls
Indicates whether to include null column values in addition to the ones, matching the criteria.
Public propertyTableAlias
Gets the table alias. Usually, this is the navigation column, which points to the actual table to be filtered.
Public propertyTableName
The table, containing the column to be filtered.
Public propertyValue
The value versus which to check.
Top
Methods
  NameDescription
Public methodStatic memberComparisonTypeToString
Returns the wording string representation of the specified comparison type.
Public methodGetXml
Gets the contents of the filter condition as XElements.
Public methodIsSatisfiedBy
Returns whether the FilterCondition is satisfied by the given value.
Public methodStatic memberReadFromXml
Reads the filter condition from XML input.
Public methodStatic memberStringToComparisonType
Returns the comparison type, matching the specified input string.
Public methodToString
Returns a String that represents this instance.
(Overrides ObjectToString.)
Top
See Also