I'm new to C# and NEST API. I have done few projects using it but I'm not clear why the class_name / POCO name mentioned in every NEST Query.
Consider the following queries,
- client.DeleteAsync<class_name>(id)
- client.Delete<class_name>(id)
- client.Search<class_name>(id)
What does the class_name have to do anything with the query? Please explain.