Version 1.3.2
·
171 commits
to master
since this release
If you prefer to use the same MongoDb database across you application, you can now use the MongoDatabase
from the MongoDb driver implementing the IMongoDatabase
interface:
var client = new MongoClient(connectionString);
var mongoDbDatabase = Client.GetDatabase(databaseName);
ITestRepository testRepository = new TestRepository(mongoDbDatabase);