Esempio n. 1
0
 Query& Query::where(const string &jscode, BSONObj scope) { 
     /* use where() before sort() and hint() and explain(), else this will assert. */
     assert( !obj.hasField("query") );
     BSONObjBuilder b;
     b.appendElements(obj);
     b.appendWhere(jscode, scope);
     obj = b.obj();
     return *this;
 }