1 write to TotalItemCount
Microsoft.AspNetCore.Components.QuickGrid (1)
Pagination\PaginationState.cs (1)
67
TotalItemCount
= totalItemCount;
7 references to TotalItemCount
Microsoft.AspNetCore.Components.QuickGrid (7)
_generated\1\Paginator_razor.g.cs (2)
47
if (State.
TotalItemCount
.HasValue)
99
__builder.AddContent(9, State.
TotalItemCount
Pagination\PaginationState.cs (5)
30
/// Gets the zero-based index of the last page, if known. The value will be null until <see cref="
TotalItemCount
"/> is known.
32
public int? LastPageIndex => (
TotalItemCount
- 1) / ItemsPerPage;
45
=> HashCode.Combine(ItemsPerPage, CurrentPageIndex,
TotalItemCount
);
62
if (totalItemCount ==
TotalItemCount
)
78
TotalItemCountChanged?.Invoke(this,
TotalItemCount
);