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

ITimeFrameConditionBuilder<T>

public interface ITimeFrameConditionBuilder<T>
Builds a condition that returns results based on relative date from when the query is executed.
T Last30Days { get; }

Creates a condition where results must have a date from the past 30 days.

T Last7Days { get; }

Creates a condition where results must have a date from past 7 days.

T LastWeek { get; }

Creates a condition where results must have a date that was in the last week, Sunday to Saturday.

T NextWeek { get; }

Creates a condition where results must have a date that is in the next week, Sunday to Saturday.

T ThisMonth { get; }

Creates a condition where results must have a date that is in the current month.

T ThisWeek { get; }

Creates a condition where results must have a date that was in the last week, Sunday to Saturday.

T TheMonthOf(int month)

Creates a condition where results must have the month of the date is equal to the value.