NEST to ElasticSearch.net migration issue with DeleteMany

I have an issue while migaring the code from NEST to ES client 8.9 and I could not find right solution. Can anyone help on this?
NEST logic:

Person myobject;
public class Persons
    {
        public Person[] persons { get; set; }
    }
Persons deleteParameters;
 var response = eClient.DeleteMany</Person/>(deleteParameters.persons);

I would like to convert the abobe code to Elastic.clients.elasticserach 8.9.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.