sql >> Databasteknik >  >> NoSQL >> MongoDB

MongoDB Spring data Criteria.all

Det här är den bästa lösningen jag hittat hittills:

...

DBObject obj = new BasicDBObject();
obj.put( "key", 1 );
obj.put( "value", "one" );
DBObject obje1 = new BasicDBObject();
obje1.put( "$elemMatch", obj );

obj = new BasicDBObject();
obj.put( "key", 2 );
obj.put( "value", "two" );
DBObject obje2 = new BasicDBObject();
obje2.put( "$elemMatch", obj );

Query qry = new Query( where("array").all(obje1, obje2) );

...


  1. Är det möjligt att ändra standard TimeZone i MongoDB med Rails 3?

  2. docker:MISCONF Redis är konfigurerad för att spara RDB-ögonblicksbilder

  3. Upprätthålla en öppen Redis-anslutning med BookSleeve

  4. mongodb 3.x-drivrutin Android-kompatibilitet