Skip to content

Version 1.3.2

Compare
Choose a tag to compare
@alexandre-spieser alexandre-spieser released this 01 Nov 08:29
· 171 commits to master since this release
e91c89f

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);