Describe the bug
PagedDataBoundComponent<T>.Count parameter (and maybe in other components) should be of type long, not int.
Rationale: most databases support over 2^32 rows and statements like SELECT COUNT(*) FROM table return a 64-bit value. This is true for MS SQL, Postgres, and even document based databases (e.g. RavenDB)
Other parameters, e.g. PageSize should stay as int.
Thank you.