Bug in Collections.CountFilter.Filter
description
When using the Collections.CountFilter.Filter returns the wrong items.
Let's say you have 22 items and wan't to page these. Page size is 5. For page the last page it's not the 3 last items that are return, but the last 5 items.
So Collections.CountFilter.Filter(e.Items, 20, 5) should return item 20, 21, 22, but instead return item 18, 19, 20, 21, 22.
// Johan