Hello,.
Has anyone any advice on how best to split up a large entitycollection (10,000+ records) so that I can use ExecuteMultipleRequest and not breach the Maxbatch 1000 limit.
So for 10000 records I want to split the master entitycollection into 10 smaller entitycollections?
I saw the MoreLinq BATCH() function and it looked perfect but if I try
foreach (var mybatch in p.newcontactcollection.Entities.Batch(1000))
I do not know how to cast mybatch to an EntityCollection.
Does anyone know if this is possible either using MoreLinq.Batch (preferably) or any other fairly simple implementation?
Many thanks as ever,
- Seamus
*This post is locked for comments