The query returns a MongoCursor<BsonDocument> which doesn't implement IDisposable, so you can't use it in a using block.
The important point is that the cursor's enumerator must disposed, not the cursor itself, so if you were using the cursor's IEnumerator<BsonDocument> directly to iterate over the cursor then you'd need to dispose it, like this:
using (var iterator = images.Find(query).SetLimit(1).GetEnumerator())
{
while (iterator.MoveNext())
{
var bsonDoc = iterator.Current;
// do something with bsonDoc
}
}
However, you'd probably never do this and use a foreach loop instead. When an enumerator implements IDisposable, as this one does, looping using foreach guarantees its Dispose() method will be called no matter how the loop terminates.
Therefore, looping like this without any explicit disposing is safe:
foreach (var bsonDocs in images.Find(query).SetLimit(1))
{
// do something with bsonDoc
}
As is evaluating the query with Enumerable.ToList<T>, which uses a foreach loop behind the scenes:
var list = images.Find(query).SetLimit(1).ToList();