i want to create index using elasticsearch. i used this code but There is an error.
var response = client.Indices.Create("people2",
index => index.Map<ElasticsearchDocument>(
x => x.AutoMap()
));
error message is "The type or namespace name 'ElasticsearchDocument' could not be found (are you missing a using directive or an assembly reference?)"