This is probably a newbie question, but here goes.
I have a method where a type DayOfWeek List that gets appended with various days of the week (Could be Wednesday & Saturday, Sunday, Monday, & Friday, etc).
Given that list, I need to compare it to a Datetime parameter, find the Week Day the DateTime parameter is closest to in the DayOfWeek list, and add days to the DateTime parameter based on what Week Day it is in the list.
For example, if the DateTime parameter being passed in is a Sunday, and my DayOfWeek list contains a Wednesday and Saturday, the parameter needs to be moved back to Saturday since it is closest in the list.
Similarly, if my list contains Sunday, Monday, and Saturday, and the parameter passed in is Thursday, then the parameter would have to be moved to Saturday.
Finally, if the parameter is equidistant from two week days in the list (Wednesday is passed in and Monday and Friday are in the list... or Sunday is passed in and Tuesday and Friday are in the list), then the parameter needs to be moved forward to the next closest week day (which, in the first case, would be Friday, and Tuesday in the second case).
It would be ideal (at least for me), to convert the distance of the next closest week day from the passed in date to an int, that way I can do something like:
passedInDate = passedInDate.AddDays(dayOfWeekDistance);
return passedInDate;
But I am open to suggestions.
I have tried LINQ statements such as:
int dayOfWeekDistance = targetDayOfWeekList.Min(x => (x - passedInDate));
But to no avail. There has to be some fancy LINQ statements that I'm missing.
Just a heads up, the main item I can't get to work is for the date to backtrack from Sunday back to Saturday if the passed in date is Sunday and the closest week day in the list is Saturday (similarly, if the passed in date is Monday and the closest week day is Friday, the date would need to traverse all the way back to Friday).
Please let me know if I missed anything or I'm just plain not making sense.
All help is welcome! Thanks.
With a helper function, LINQ can be used.
The helper function computes the closest day of week using a utility function to compute the number of forward days between the two DOWs:
Then you can find the nearest DOW in the list and return the right number of days to move (and direction) using
Aggregate
with LINQ:It occurred to me I could use a tuple to return the
absdist
from the helper function since it already knows it. Then I can just use theTuple
in the LINQ: