<PackageReference Include="Relativity.Services.DataContracts.SDK" Version="13.6.2" />

TextCondition

public class TextCondition : FieldCondition
Use a TextCondition in a Query to compare a FixedLengthText or LongText field against a string value.

The text comparison operator to be used.

protected string _value

The string value against which the field will be compared.

public TextConditionEnum Operator { get; set; }

Gets or sets the text comparison operator to be used.

public virtual string Value { get; set; }

The string value against which the field will be compared.

public TextCondition(string field, TextConditionEnum op, string value)

Initializes a new instance of the TextCondition class.

public TextCondition(int artifactID, TextConditionEnum op, string value)

Initializes a new instance of the TextCondition class.

public TextCondition(Guid guid, TextConditionEnum op, string value)

Initializes a new instance of the TextCondition class.

public TextCondition(string field, TextConditionEnum op, string[] value)

Initializes a new instance of the TextCondition class.

public TextCondition(int artifactID, TextConditionEnum op, string[] value)

Initializes a new instance of the TextCondition class.

public TextCondition(Guid guid, TextConditionEnum op, string[] value)

Initializes a new instance of the TextCondition class.

public TextCondition(string field, TextConditionEnum op)

Initializes a new instance of the TextCondition class.

public TextCondition(int artifactID, TextConditionEnum op)

Initializes a new instance of the TextCondition class.

Initializes a new instance of the TextCondition class.

public TextCondition()

Initializes a new instance of the TextCondition class.