added pluralizationclass from Humanizer, and set collections names to camel case instead of lower case for better readability.

This commit is contained in:
alexandre-spieser
2017-09-03 19:00:02 +00:00
parent 37c6f38d5d
commit b94b499c10
6 changed files with 453 additions and 7 deletions
@@ -11,12 +11,12 @@ namespace IntegrationTests.Infrastructure
public void DropTestCollection<TDocument>()
{
_mongoDbContext.DropCollection<TDocument>();
MongoDbContext.DropCollection<TDocument>();
}
public void DropTestCollection<TDocument>(string partitionKey)
{
_mongoDbContext.DropCollection<TDocument>(partitionKey);
MongoDbContext.DropCollection<TDocument>(partitionKey);
}
}
}