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

BetweenCondition<T>

A condition that filters based on values found between the start and end values.
public T End { get; }

The upper end that values must be less than.

public T Start { get; }

The lower end that values must be greater than

public BetweenCondition(IFieldRef fieldRef, T start, T end)

A condition on a field identified by IFieldRef that returns results with values between the start and end.

public BetweenCondition(string fieldName, T start, T end)

A condition on a field identified by name that returns results with values between the start and end.

public BetweenCondition(Guid fieldGuid, T start, T end)

A condition on a field identified by Guid that returns results with values between the start and end.