Below is my Enumerator List:
Enumerator List
public enum StatusEnum { Open = 1, Rejected = 2, Accepted = 3, Started = 4, Completed = 5, Canc
How about something along the lines of:
.Where(x => x <= Activity.StatusEnum.Started)