@Test
public void canBindOidWithASpecificName() throws Exception {
/* given */
ObjectId id = new ObjectId();
LinkedFriend john = new LinkedFriend(id);
collection.save(john);
Iterator<LinkedFriend> friends = collection.find("{friendRelationId:{$oid:#}}", id.toString()).as(LinkedFriend.class);
/* then */