<PackageReference Include="Relativity.API" Version="20.0.0" />

SimpleCondition<T>

A simple Condition on a field
public Operator Operator { get; }

Operator to define the comparison.

public T[] Values { get; }

The values the Field is compared against.

public SimpleCondition(IFieldRef fieldRef, Operator op, T[] values)

A condition on a field identified by IFieldRef that returns results that match values based on the operator's evaluation.

public SimpleCondition(string fieldName, Operator op, T[] values)

A condition on a field identified by name that returns results that match values based on the operator's evaluation.

public SimpleCondition(Guid fieldGuid, Operator op, T[] values)

A condition on a field identified by Guid that returns results that match values based on the operator's evaluation.