4.0.13.523 SD.LLBLGen.Pro.DQE.SqlServer.dll
4.0.13.0725 SD.LLBLGen.Pro.ORMSupportClasses.dll
4.0.13.406 SD.LLBLGen.Pro.ORMSupportClasses.Web.dll
DotNet 4.0 vs2010 project
Adapter template
SQL Server 2008 R2
Any clues on a way to get paging on a grid to work properly when an Authorizer drops rows?
To get the total rows, I need to iterate through all the entities and update the total count for the grid.
To get the appropriate page, I need to get everything from the first row to some way past the current page full of rows and hope that is enough. If not, I have to go back and do it again with more spare rows in the Take().
ditto for the number of rows on a page.
Both these things negate the performance benefits of just getting a page full with .TakePage(pageNumber, pageSize) unless their is a canny way of optimizing this.
As all my applications are web based, this is causing me to re-assess whether to use authorizers in grids where more than 10 rows or so are normally retuned.