Show / Hide Table of Contents

Class MatchingRule

Types by which two items can be compared.

Inheritance
System.Object
MatchingRule
Namespace: MESL.SqlRace.Domain.Query
Assembly: MESL.SqlRace.Domain.dll
Syntax
public sealed class MatchingRule : Enum

Fields

Between

Between - Inclusive Data is GreaterThanOrEqual to Value AND LessThanOrEqual to UpperValue

Declaration
public const MatchingRule Between
Field Value
Type Description
MatchingRule

Contains

Matches items containing the specified value.

Declaration
public const MatchingRule Contains
Field Value
Type Description
MatchingRule

DoesNotContain

Matches items that do not contain the specified value.

Declaration
public const MatchingRule DoesNotContain
Field Value
Type Description
MatchingRule

EqualTo

Matches items that equal the specified value.

Declaration
public const MatchingRule EqualTo
Field Value
Type Description
MatchingRule

GreaterThan

Matches items that are greater than the specified value.

Declaration
public const MatchingRule GreaterThan
Field Value
Type Description
MatchingRule

GreaterThanOrEquals

Matches items that are greater than or equal to the specified value.

Declaration
public const MatchingRule GreaterThanOrEquals
Field Value
Type Description
MatchingRule

IsEmpty

Matches items that are empty.

Declaration
public const MatchingRule IsEmpty
Field Value
Type Description
MatchingRule

IsNotEmpty

Matches items that are not empty.

Declaration
public const MatchingRule IsNotEmpty
Field Value
Type Description
MatchingRule

LessThan

Matches items that are less than the specified value.

Declaration
public const MatchingRule LessThan
Field Value
Type Description
MatchingRule

LessThanOrEquals

Matches items that are less than or equal to the specified value.

Declaration
public const MatchingRule LessThanOrEquals
Field Value
Type Description
MatchingRule

NotBetween

NotBetween - Data is LowerThan Value OR GreatherThan UpperValue

Declaration
public const MatchingRule NotBetween
Field Value
Type Description
MatchingRule

NotEqualTo

Matches items that do not equal the specified value.

Declaration
public const MatchingRule NotEqualTo
Field Value
Type Description
MatchingRule

RegularExpression

Matches items based on a regular expression match.

Declaration
public const MatchingRule RegularExpression
Field Value
Type Description
MatchingRule

value__

Declaration
public int value__
Field Value
Type Description
System.Int32
Back to top Generated by DocFX