Beispiel #1
0
 public MongoIndexStore(string mongoUrl, MongoIndexMapper indexMapper)
 {
     _database = MongoDatabaseFactory.GetMongoDatabase(mongoUrl);
     _indexMapper = indexMapper; 
     Collection = _database.GetCollection(Config.MONGOINDEXCOLLECTION);
 }
Beispiel #2
0
 public MongoIndexMapperTest()
 {
     sut = new MongoIndexMapper();
 }