Skip to content

Commit 33155f2

Browse files
committed
Update readme.md
1 parent 0271262 commit 33155f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ var response = client.Search<Tweet>(request);
147147
NEST also includes and exposes the low-level [Elasticsearch.Net](https://github.com/elasticsearch/elasticsearch-net/tree/develop/src/Elasticsearch.Net) client that you can fall back to incase anything is missing:
148148

149149
```csharp
150-
//.Raw is of type IRawElasticClient
151-
var response = client.Raw.SearchPost("myindex","elasticsearchprojects", new
150+
//.LowLevel is of type IElasticLowLevelClient
151+
var response = client.LowLevel.SearchPost("myindex","elasticsearchprojects", new
152152
{
153153
from = 0,
154154
size = 10,

0 commit comments

Comments
 (0)