I have a list of objects with a StartDate
property but I filter it out to just dates.
So ListOfDates
contains 2016-04-05
, 2016-04-07
or more.
I have another list of objects with RequestDate
that has dates that range from 2014 to 2016.
How can I write a LINQ with a condition where RequestDate
is greater than any of the dates in ListOfDates
? I'm looking for something like Contains
but works for comparisons.