@Test
public void canBindTwoOidInSameQuery() throws Exception {
/* given */
ObjectId id1 = new ObjectId();
Friend john = new Friend(id1, "John");
ObjectId id2 = new ObjectId();
Friend peter = new Friend(id2, "Peter");
collection.save(john);
collection.save(peter);
MongoCursor<Friend> friends = collection.find("{$or :[{_id:{$oid:#}},{_id:{$oid:#}}]}", id1.toString(), id2.toString()).as(Friend.class);