FilterSyms Class |
Namespace: NetQuarry
The FilterSyms type exposes the following members.
Name | Description | |
---|---|---|
![]() | FilterSyms | Initializes a new instance of the FilterSyms class |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() ![]() | And | An AND conjunction. |
![]() ![]() | Between | A BETWEEN condition which expects an AND conjunction separating two range delimiter values. |
![]() ![]() | Contains | Specifies that the value must be contained in the searched content. Applies to strings only. |
![]() ![]() | DoesNotContain | Specifies that the value must NOT be contained in the searched content. Applies to strings only. |
![]() ![]() | DoesNotInclude |
This is the DoesNotInclude item used with BitFlags filtering, currently
for obtaining text only and not for invoking a filtering operation.
|
![]() ![]() | DoesNotStartWith | Specifies that the value must NOT start the searched content. Applies to strings only. |
![]() ![]() | FTS | Filters for Contains using full-text-search index. |
![]() ![]() | Includes | |
![]() ![]() | IsNotNull | Filters for non-null values only. |
![]() ![]() | IsNull | Filters for null values only. |
![]() ![]() | Length | Filters on string length. |
![]() ![]() | Like | Filters for matches using the SQL "LIKE" keyword allowing use of SQL "%" and "?" wildcards. |
![]() ![]() | Not | Negation. |
![]() ![]() | NotLike | Filters for non-matches using the SQL "LIKE" keyword allowing use of SQL "%" and "?" wildcards. |
![]() ![]() | Or | An OR conjunction. |
![]() ![]() | SoundsLike | Specifies that the value be phonetically similar to the searched content (using SOUNDEX). Applies to strings only. |
![]() ![]() | StartsWith | Specifies that the value must start the searched content. Applies to strings only. |
Name | Description | |
---|---|---|
![]() | EqualValue |
Determines if the object value is equal to another object. If the two objects are null, then this returns true.
There is special handling for guid comparisons (since a guid could be a string formatted in up to 3 different ways).
If the special guid handling is not performed, then the object.Equals method is used.
(Defined by EAPUtil.) |