I have inserted documents into mongodb without an id and would like to retrive them by searching for their MongoDB ObjectId that MongoDB has given the documents
Here is my attempt:
var query_id = Query.EQ("_id", "50ed4e7d5baffd13a44d0153");
var entity = dbCollection.FindOne(query_id);
return entity.ToString();
I get an errror saying:
A first chance exception of type 'System.NullReferenceException' occurred
What is the problem?
