I am using the Novell.Directory.Ldap library from .net core to search Active Directories. By and large, this library works really well and I've used it on many directories successfully.
However, I have come across a problem with the search limit being limited to 1,000 records - I have come across an AD that has more like 10,000 entries.
I know that I can set the limits to increase the soft limit in the Novell library, and that will then use the DC's search limits, which from what I can see are 5,000 by default.
If I were using the full framework, I could use System.DirectoryServices which has a paged search option, which would allow me to search using a smaller page size, but eventually get all results.
Is there any way to do an equivalent paged search operation in the Novell.Directory.Ldap library?