Hi I am having trouble with expressing this query in c# mongodb, i want it to return all the results of an objectID where it does not equal "000000000000000000000000" which works in mongovue but i cant get it work in my program.
{"ProfilePictureId" : {$ne: new ObjectId ("000000000000000000000000")}}
i am using official c# driver:
var query = new QueryDocument();
foreach (BsonDocument book in col.Find(query))
{
}