Method JobEndGreaterThan
JobEndGreaterThan<T>(Exposer<T, IDictionary<string, dynamic>>, DateTime)
Returns a filter that filters jobs keeping only those that have an end time greater than the specified DateTime value.
public static ManagedFilter<T, IEnumerable> JobEndGreaterThan<T>(this Exposer<T, IDictionary<string, dynamic>> field, DateTime time)
Parameters
field
Exposer<T, IDictionary<string, dynamic>>The field exposer.
time
DateTimeThe DateTime value that the end time field of the default section definition of the job must be greater than.
Returns
- ManagedFilter<T, IEnumerable>
A filter that filters jobs keeping only those that have an end time greater than the specified DateTime value.
Type Parameters
T
The type from which fields are exposed.
Examples
Job retrievedJob = jobManagerHelper.Jobs.Read(JobExposers.FieldValues.JobEndGreaterThan(DateTime.Now)).FirstOrDefault();