diff --git a/README.md b/README.md index b021af2..3a3ea1b 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,12 @@ Here is an example of repository usage, where the TestRepository is implementing public void DropTestCollection() { - _mongoDbContext.DropCollection(); + MongoDbContext.DropCollection(); } public void DropTestCollection(string partitionKey) { - _mongoDbContext.DropCollection(partitionKey); + MongoDbContext.DropCollection(partitionKey); } } ```