I would like to know how can I check the existence of two objects with mongoDB and C#.
I know how to do it for 1 object:
foreach (BsonDocument item in collection.Find(Query.Exists("Boiling point")))
But i have no idea how to check on two objects.
Thanks!