CBLQuerySelectResult
@interface CBLQuerySelectResult : NSObjectA CBLQuerySelectResult represents a returning value in each query result row.
- 
                  
                  Creates a CBLQuerySelectResult for the given property name. DeclarationObjective-C + (nonnull instancetype)property:(nonnull NSString *)property;Swift class func property(_ property: String) -> SelfParameterspropertyThe property name. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult for the given property name and the alias name. DeclarationObjective-C + (nonnull instancetype)property:(nonnull NSString *)property as:(nullable NSString *)alias;Swift class func property(_ property: String, as alias: String?) -> SelfParameterspropertyThe property name. aliasThe alias name. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult for the given expression. DeclarationObjective-C + (nonnull instancetype)expression:(nonnull CBLQueryExpression *)expression;Swift class func expression(_ expression: CBLQueryExpression) -> SelfParametersexpressionThe expression. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult for the given expression and the alias name. DeclarationObjective-C + (nonnull instancetype)expression:(nonnull CBLQueryExpression *)expression as:(nullable NSString *)alias;Swift class func expression(_ expression: CBLQueryExpression, as alias: String?) -> SelfParametersexpressionThe expression. aliasThe alias name. Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult that returns all properties data. The query returned result will be grouped into a single CBLMutableDictionary object under the key of the data source name. DeclarationObjective-C + (nonnull instancetype)all;Swift class func all() -> SelfReturn ValueThe CBLQuerySelectResult. 
- 
                  
                  Creates a CBLQuerySelectResult that returns all properties data. The query returned result will be grouped into a single CBLMutableDictionary object under the key of the data source name key or the given alias data source name if specified. DeclarationObjective-C + (nonnull instancetype)allFrom:(nullable NSString *)alias;Swift class func all(from alias: String?) -> SelfParametersaliasThe data source alias name Return ValueThe CBLQuerySelectResult. 
- 
                  
                  Not available. DeclarationObjective-C - (nonnull instancetype)init;
 CBLQuerySelectResult Class Reference
        CBLQuerySelectResult Class Reference