Hi, I am creating an IDO Custom Assembly and in C#, calling loadCollection, where I am expecting 50,000 records:
LoadCollectionResponseData loadResponse = new LoadCollectionResponseData();
LoadCollectionRequestData loadRequest = new LoadCollectionRequestData();
//Some Code here
loadRequest.RecordCap = 0;
loadResponse.RecordCap = 0;
loadResponse = this.Context.Commands.LoadCollection(loadRequest);
I am getting max 5000 rows. I want to get more than 5000. RecordCap is NOT working as expected. Any tips on how I can load more rows?