Using LLBLGenPro 4.2 with target LLBLGenPro framework using the Adapter pattern.
List<int> ids = requests.Select(r => r.RequestId).ToList();
RelationPredicateBucket relationship = new RelationPredicateBucket(RequestProcessingFields.RequestId == ids);
int result = adp.DeleteEntitiesDirectly(typeof(RequestProcessingEntity), relationship);
The ids list can often exceed 2100 parameters resulting in this exception:
An exception was caught during the execution of an action query:
The incoming request has too many parameters. The server supports a maximum of 2100 parameters.
Reduce the number of parameters and resend the request.
I found this setting on the Adapter - but this is defaulted to 50 and seems to control retrieval parameters as to when to use an IN statement over a subquery.
ParameterisedPrefetchPathThreshold
What is the recommended approach? Should I just call the method with batches of say 100 ids until the list is exhausted?
Thank you.