List<UserMonth> in my component, and I want to render a table by week.List<UserMonth>.Select(x => x.Month == SelectedMonth && x.Year == SelectedYear) .. should be easy enough)List<DaysWorked> into a nested list: List<List<DaysWorked>> where I sort each week's dates in its own list, and add that list to the list (but keep it sorted?) (Or if there is a better way I'd love to hear it)