I have an app which works with an Azure SQL Database.
We have a history screen which is intended to list the most recent incidents recorded in the database.
I have an expression which sorts the results, latest at top (i.e. descending).
I do not know how to limit the number of database records returned, which will certainly be to much for a non-delagable query.
I can create a SQL View, but I'd prefer to keep it clean within PowerApps.
In other development tools, I'd use a pass-through query.
Or I'd use a paged control and let the results be sent in chunks, with most users only needing the first n results.
Looking for suggestions on how to approach a solution.