Click or drag to resize

FindConstraintType Enumeration

The type of constraint check.

Namespace:  PDTec.IceNet.Core.Database.Query
Assembly:  PDTec.IceNet.Core (in PDTec.IceNet.Core.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax
C#
public enum FindConstraintType
Members
  Member nameValueDescription
Symbol0 No check, the Name of the constraint is available as symbol for SQL expressions.
Equal1 Check for equality.
NotEqual2 Check for value difference.
Like3 Check for string pattern (can include '*' and '?' wildcards).
Between4 Check if the value is beween first and second parameter.
Less5 Check if the value is less than the first parameter.
LessEqual6 Check if the value is less or equal than the first parameter.
Greater7 Check if the value is greater than the first parameter.
GreaterEqual8 Check if the value is greater or equal than the first parameter.
In9 Check if the value is in the result set provided by the subquery.
NotIn10 Check if the value is not in the result set provided by the subquery.
InSet11 Check if the value is in a set provided as the first parameter.
TypeOf12 Checks if the value (object type ID) is equal or subtype of the first parameter (object type ID).
See Also