Update mongodb

This commit is contained in:
sunkaixuan 2025-05-05 15:23:52 +08:00
parent 552d9d230f
commit 11b0a09a00

View File

@ -36,7 +36,7 @@ namespace MongoDb.Ado.data
if (projection != null)
findFluent = findFluent.Project<BsonDocument>(projection);
var cursor = findFluent.ToEnumerable();
var cursor = findFluent.ToList();
return new MongoDbBsonDocumentDataReader(cursor); // 你要确保这个类支持逐行读取 BsonDocument
}
}