i need to know if there is a way to delete all docs into one collection using nest 2.1.1,
this code:
elastic.DeleteByQuery<Doc>(del => del
.Query(q => q
.QueryString(qs=>qs.Query("*"))
)
);
throw
Error 6 No overload for method 'DeleteByQuery' takes 1 arguments D:\tfs\Produzione Documentale\MES\Utilities\TestIndiciFisco\TestIndiciFisco\Form1.cs 1509 12 TestIndiciFisco
elastic is ElasticClient
Doc is the class mapping the index's documents.
thanks,