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))
{

}
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can build your query as follows:

var query = Query.NE("ProfilePictureId", ObjectId.Empty);

ObjectId.Empty returns an ObjectId composed of all zeroes.

link|improve this answer
thanks Brian that worked – Dorf Feb 13 at 1:39
Great! Happy to help. – Brian Knight Feb 13 at 1:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.