Replies: 2 comments 1 reply
-
You can use var queryResult = await dbContext.Books.ApplyFilter(filter).ToListAsync();
var totalCount = await dbContext.Books.ApplyFilterWithoutPagination(filter).CountAsync(); |
Beta Was this translation helpful? Give feedback.
1 reply
-
Works a treat. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When using applying filtering and paging, how can I get the Total record count and the Total page count?
I could not find a reference to this in the documentation.
Beta Was this translation helpful? Give feedback.
All reactions