From 8044ec8e563084b06ece5589b885e1f905770938 Mon Sep 17 00:00:00 2001 From: Alexandre SPIESER Date: Sun, 3 Sep 2017 19:31:27 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } ```