public void BeforeTest() { store = new MongoDBDataStore(CONNECT_STR, DB_NAME); store.QueryResolver.ScriptAssembly = SCRIPT_ASM; store.QueryResolver.RegisterHandlerLocation("NFX.NUnit.Integration.CRUD.MongoSpecific, NFX.NUnit.Integration"); clearAll(); }
public CountPerzons(MongoDBDataStore store) : base(store, null) { m_Source = new QuerySource(GetType().FullName, @"#pragma modify=MyPerzon {'Age': {'$gt': '$$fromAge', '$lt': '$$toAge'}}"); }
public MongoDBCRUDQueryExecutionContext(MongoDBDataStore store, Database db) { DataStore = store; Database = db; }
public MongoDBCRUDQueryHandlerBase(MongoDBDataStore store, QuerySource source) { m_Store = store; m_Source = source; }
public MongoDBCRUDScriptQueryHandler(MongoDBDataStore store, QuerySource source) : base(store, source) { }