RLMMongoDatabase
Objective-C
@interface RLMMongoDatabase : NSObject
Swift
@_nonSendable(_assumed) class RLMMongoDatabase : NSObject, @unchecked Sendable
RLMMongoDatabase
代表 MongoDB database,其中包含一组包含数据的collection。
可以从RLMMongoClient
中检索。
使用它获取RLMMongoCollection
以读取和写入数据。
注意
在读取或写入数据之前,用户必须先登录。
-
此数据库的名称
声明
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull name;
Swift
var name: String { get }
-
获取一个集合。
声明
Objective-C
- (nonnull RLMMongoCollection *)collectionWithName:(nonnull NSString *)name;
Swift
func collection(withName name: String) -> RLMMongoCollection
参数
name
要返回的集合的名称 @returns 集合