我想在我的 iOS 应用程序中实现对 mongoDB 的复杂查询。我正在使用 ObjCMongoDB,它运行良好。我可以在数据库上实现计数查询,请看下面的代码
commandDict = @{@"count": @"logs",@"query":@{@"detector":@"kaspersky"}};
commandDictdata = [dbConn runCommandWithDictionary:commandDict onDatabaseName:@"logdb" error:&error];
我正在尝试实现 db.collection.find() 但遇到了麻烦。谁能解释我如何做到这一点。
谢谢。