Package org.springframework.data.mongodb.core.query

Examples of org.springframework.data.mongodb.core.query.NearQuery.toDBObject()


    NearQuery query = NearQuery.near(10.0, 10.0);
    GeoNearOperation operation = new GeoNearOperation(query);
    DBObject dbObject = operation.toDBObject(Aggregation.DEFAULT_CONTEXT);

    DBObject nearClause = DBObjectTestUtils.getAsDBObject(dbObject, "$geoNear");
    assertThat(nearClause, is(query.toDBObject()));
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.