Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi,
There are two ways to do that
- You can adjust the value of maxListObject in baf.data.metaobject.config.
- Even better You can use the other overload. Execute(new ListRequest(metaClassName, new FilterElement[] {}, new SortingElement[] {}, start, count) to specify the paging.
Regards,
/Q
Hi,
When I run BusinessManager.List without any filters, BusinessManager.List("Contact", new FilterElement[] {}) commerce manager magically uses top 1000 in the background. So if you have more than 1000 contacts you will not be able to search for them without appying a filter.
Is there any way to get alla to contacts anyway without applying a filter? I want BusinessManager.List("Contact", new FilterElement[] {}) to give me all, not to do a freakin' top 1000 without me saying so.