<PackageReference Include="Relativity.Server.Utility.SDK" Version="5000.2.1" />

kCura.Data.RowFilter.Condition

Aggregates a list of Condition, DataColumn, LiteralValue, NullValue, Operator, or generic objects.
public string ClusterName { get; set; }

Gets or sets the name of the cluster associated with this Condition.

public int Count { get; }

Gets the count of terms associated with this Condition.

public bool IsEmpty { get; }

Indicates whether or not this Condition is empty.

public object this[int index] { get; }

Gets the condition term at the provided index.

public Condition()

Initializes a new instance of Condition.

public void Add(Condition condition)

Adds a Condition to this Condition.

public void Add(DataColumn dataColumn)

Adds a DataColumn to this Condition.

public void Add(LiteralValue LiteralValue)

Adds a LiteralValue to this Condition.

public void Add(NullValue nullValue)

Adds a NullValue to this Condition.

public void Add(Operator operator)

Adds an [Operator] to this Condition.

public void Add(object o)

Adds a generic object to this Condition.

public int CompareTo(object obj)

Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.

public bool EqualTo(Condition other)

Indicates whether or not this Condition is equal to another.

Gets an enumerator over the terms of this Condition.

public XDocument ToXml()

Converts this Condition to XML.