I have over 5000 Account records in Salesforce that need to be deleted.
I am currently using the following in my c# code
SalesForceEnterpriseService.DeleteResult[] delResult = _service.delete(ids);
and ids is a string array defined as follows: string[] ids. When the above code runs , it gives an error: EXCEEDED_ID_LIMIT: delete id limit reached: 200. Is there a way i can delete these 5000 records calling my service from within c# ?