I have a web application where I want to display the 25 newest entities, based on a property "created".
To display this list, I fill an entity collection using GetMulti(selectFilter, 25, sortClauses).
However, this is when the Authorization Classes come in. In this collection of 25 entities there are some entities which the current user is not allowed to see. So they are filtered out. There are some cases even the current user doesn't see any entities, because he has no access to the first 25 newest entities.
What is the best approach for this? I want to display a list of a maximum of 25 newest entities where the user has access to.