コード例 #1
0
 public MongoIndexStore(string mongoUrl, MongoIndexMapper indexMapper)
 {
     _database    = MongoDatabaseFactory.GetMongoDatabase(mongoUrl);
     _indexMapper = indexMapper;
     Collection   = _database.GetCollection <BsonDocument>(Config.Mongoindexcollection);
 }
コード例 #2
0
 public MongoIndexStore(string mongoUrl, MongoIndexMapper indexMapper)
 {
     _database    = MongoDatabaseFactory.GetMongoDatabase(mongoUrl);
     _indexMapper = indexMapper;
     Collection   = _database.GetCollection(Config.MONGOINDEXCOLLECTION);
 }
コード例 #3
0
 public MongoIndexMapperTest()
 {
     sut = new MongoIndexMapper();
 }